九月二十Java学习

class FreshJuice {

enum FreshJuiceSize{ SMALL, MEDIUM , LARGE }

FreshJuiceSize size;

}

public class FreshJuiceTest {

public static void main(String[] args){

FreshJuice juice = new FreshJuice();

juice.size = FreshJuice.FreshJuiceSize.MEDIUM ;

}

}

posted @ 2021-09-20 23:02  马冉冉  阅读(25)  评论(0)    收藏  举报