⑴ java中,如何使用另外一包中的public變數,import怎麼寫
使用另外一個包中的類的public 變數,需要先實例化那個類,或者那個類的public加上static修飾符,import 後面帶上那個包的完整路徑就好了。
例如 : student類裡面有name變數。Test需要調用
public class Student{
public String name="aaa";
}
test裡面調用:
Student student = new Student();
system.out.println(student.name);
或者name屬性定義成靜態的
public static String name="aaa";
然後test這樣調用:
system.out.println(Student.name);