摘要:
package fivetwo; public class Employee{ private String str; private int x; private final int y; private final String str2; public Employee(){ this.y = 3; ... 阅读全文
摘要:
byte,char,short,int,long,float,double,boole 阅读全文
摘要:
package valuetest1; public abstract class Person { public abstract String method1(); public String method2(){ return ""; } } package valuetest1; publi 阅读全文