public class Test {
String [] arrayA = new String [5]; // Your Array
arrayA[0] = "Testing";
public Test(){ // Your Constructor
method1(arrayA[0]); // Calling the Method
}
public void method1 (String yourString) { // Your Method
System.out.println(yourString);
}
}
new Test();
在您的主类中,如果您希望通过创建您可以编写的 Test 实例从主类调用该方法,您可以调用OR:
public class Test {
public Test(){ // Your Constructor
// method1(arrayA[0]); // Calling the Method // Commenting the method
}
public void method1 (String yourString) { // Your Method
System.out.println(yourString);
}
}
在您的主类中,在您的类中创建一个测试实例main
。
Test test = new Test();
String [] arrayA = new String [5]; // Your Array
arrayA[0] = "Testing";
test.method1(arrayA[0]); // Calling the method
并调用你的方法。
编辑:
提示:有一个编码标准说永远不要method
以variable
大写开头。
此外,声明类不需要()
.