Java類之間的資料傳遞3中方法。
阿新 • • 發佈:2019-02-13
1.若是不變的常量可用介面interface,在介面中定義然後幾個類就可以共用了。
2.如果是類之間傳遞變數有兩種方法,假如類A呼叫類B的一個屬性,類B的長像如下:
class B {
public static String x ="nice";
public static void main(String []arg)
{
}
}
類A可這樣寫
2.1
class A{
public String x;
public A()
{
this.x= CodeGenAction.x;
}
public static void main(String []arg)
{
//輸出nice
System.out.println(x);
}
}
2.2
class A{
public String x;
public void setX(String x)
{
this.x= x;
}
public static void main(String []arg)
{
setX(CodeGenAction.x);
//輸出nice
System.out.println(x);
}
}
3.將資料寫入儲存檔案中如xml,txt,資料庫,然後取出,這樣是比較麻煩的。