编写家庭作业的错误

时间:2016-02-23 04:35:30

标签: java

我正在为我的班级编写一个程序而且我正在编译错误而且我不确定原因。我认为它与我的Test方法有关。

public class Test1 {

    public static void main(String[] args) {

        String test;

    public void Test(String s){
        text = s;
        }

        Test test = new Test("ABC");
        System.out.println(test);

    }
}

1 个答案:

答案 0 :(得分:2)

public class Test1 {

 String text;
    public Test1(){

       }
    public Test1(String s){
        this.text = s;
        }
    public static void main(String[] args) {
        Test1 test = new Test1("ABC");
        System.out.println(test.text);
    }
}

试试这个..