前提是同一个包下:
第一个类是
public class first(){
public first(String id,String name){
this.id=id;
this.name=name;
}
}
第二个类是:
public class two(){
public void test(){
first st=new first("1","脑残片");
System,out.println(st.id+st.name);
}
public static void main(String[] args){
two wo=new two();
wo.test();
}
}
上述代码中的第一类中的参数为什么会报错呢?
因为你已经new了,是新的。不同类中可以同名
你的类真特别,还有括号
first st=new first("1","脑残片"); 你看这句是不是把第一个类的引用放到了第二个类中了
没有定义属性啊
第一个类没有定义属性,应该在前面加上,
String id;
String name;