我对 Java 完全陌生... :(
我需要将一个变量从父类传递给子类,但我不知道该怎么做。该变量位于父类的方法中,我想在子类的方法之一中使用它。
这是怎么做到的?
public class CSVData {
private static final String FILE_PATH="D:\\eclipse\\250.csv";
@Test
public static void main() throws IOException {
//some code here
String firstname1 = array.get(2).get(1);
}
}
然后是另一个班级
public class UserClassExperimental3 extends CSVData {
public static void userSignup() throws InterruptedException {
//some code here
String firstname= firstname1; //and here it doesnt work
}
}
实际上,我认为我成功地这样做了:
在此处添加变量:
public static void userSignup(String firstname1)
然后在这里使用它:
String firstname=firstname1;
System.out.println(firstname);
但是现在我无法将它传递给需要它的方法。