构造方法对象使用问题
前提是同一个包下:
第一个类是
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();
}
}
上述代码中的第一类中的参数为什么会报错呢?