Java学习

class FreshJuice {

enum FreshJuiceSize{ SMALLMEDIUM , LARGE }

FreshJuiceSize size;

}

public class FreshJuiceTest {

public static void main(String[] args){

FreshJuice juice = new FreshJuice();

juice.size = FreshJuice.FreshJuiceSize.MEDIUM ;

}

}

posted on 2021-09-21 20:30  学习的CYT  阅读(28)  评论(0)    收藏  举报