Are instances of enums static by default?

前端 未结 2 1444
醉酒成梦
醉酒成梦 2021-02-14 12:43
enum Animals{
    DOG(\"woof\"),
    CAT(\"Meow\"),
    FISH(\"Burble\");

    String sound;

    Animals(String s) {
            sound = s;
    }
}
public class TestEnu         


        
2条回答
提交回复
热议问题