问答详情
源自:5-1 Map & HashMap 简介

构造方法对象使用问题

前提是同一个包下:

第一个类是

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();

}

}

上述代码中的第一类中的参数为什么会报错呢?

提问者:油泼裤带面 2018-01-04 21:52

个回答

  • 慕无忌0988186
    2018-08-07 11:34:42

    因为你已经new了,是新的。不同类中可以同名

  • 慕无忌0988186
    2018-08-07 11:30:28

    你的类真特别,还有括号

  • ICANYJ
    2018-07-30 14:01:06

    first st=new first("1","脑残片");   你看这句是不是把第一个类的引用放到了第二个类中了

  • ICANYJ
    2018-07-30 13:59:20

    没有定义属性啊

  • 慕仰835993
    2018-01-04 22:48:35

    第一个类没有定义属性,应该在前面加上,

    String id;

    String name;