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();
或者如果你想的方法,通過創建測試的一個實例,從主類叫你可以寫:
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
CLAS創建測試實例秒。
Test test = new Test();
String [] arrayA = new String [5]; // Your Array
arrayA[0] = "Testing";
test.method1(arrayA[0]); // Calling the method
然後調用你的方法。
編輯:
提示:有一個編碼標準,說從來沒有啓動method
和variable
大寫。
此外,聲明類不需要()
。
你有主要的功能在這個類? –