摘要: class Person{ private String name; private static int count; public Person() { count++; this.name = "NONAME - " + count; } public Person(String name) { thi... 阅读全文