摘要:
1 public class Test { 2 public static void main(String[] args) { 3 final int a = 11; 4 int b = 111; 5 a = 123;//The final local variable a cannot be a 阅读全文
摘要:
1 public class Dog implements Serializable { 2 3 private static final long serialVersionUID = 2239821175446189806L; 4 private String kind; 5 private S 阅读全文