「java static變數」的推薦目錄:
- 關於java static變數 在 コバにゃんチャンネル Youtube 的精選貼文
- 關於java static變數 在 大象中醫 Youtube 的最讚貼文
- 關於java static變數 在 大象中醫 Youtube 的最佳解答
- 關於java static變數 在 Re: [問題] JAVA如何設定全域變數- 看板java - 批踢踢實業坊 的評價
- 關於java static變數 在 Ch1_2-Java語法中的static方法及static 變數- YouTube 的評價
- 關於java static變數 在 Ch1_2-Java語法中的static方法及static 變數- YouTube 的評價
- 關於java static變數 在 [Java筆記] 全域變數Global instances of class - 1010Code 的評價
- 關於java static變數 在 Java static變數-在PTT/IG/網紅社群上服務品牌流行穿搭 的評價
- 關於java static變數 在 class - Static variable bug in Java - Stack Overflow 的評價
java static變數 在 大象中醫 Youtube 的最讚貼文
java static變數 在 大象中醫 Youtube 的最佳解答
java static變數 在 Ch1_2-Java語法中的static方法及static 變數- YouTube 的推薦與評價
說明 static變數 及方法於程式中的使用方法及使用的限制。 ... <看更多>
java static變數 在 Ch1_2-Java語法中的static方法及static 變數- YouTube 的推薦與評價
說明 static變數 及方法於程式中的使用方法及使用的限制。 ... 8.1K views 10 years ago Java SE 程式設計進階課程(SL275). 說明 static變數 及方法於程式 ... ... <看更多>
java static變數 在 Re: [問題] JAVA如何設定全域變數- 看板java - 批踢踢實業坊 的推薦與評價
假設需求是讓兩個類別的實體能一起使用同一個變數
由於基本型別無法做到call by reference, 所以使用wrapper
個人覺得在非多執行緒的情況下
實在能不用static變數就不要用
在main function中定義一個變數其實就夠用了, 不是嗎?
我覺得比較安全的做法如下
public class Class1 {
public Class1(MyInt integer) {
this.integer = integer;
this.integer.setInteger(100);
}
private final MyInt integer;
public static void main(String[] args) {
final MyInt integer = new MyInt(0);
Class1 c1 = new Class1(integer);
Class2 c2 = new Class2(integer);
}
}
class Class2 {
public Class2(MyInt integer) {
this.integer = integer;
this.integer.setInteger(200);
}
private final MyInt integer;
}
class MyInt {
public MyInt(int integer) {
this.integer = integer;
}
private int integer;
public int getInteger() {
return integer;
}
public void setInteger(int integer) {
this.integer = integer;
}
}
※ 引述《[email protected] (暑假作業真多..泣)》之銘言:
: 全域變數應該第一個想到的是static吧,
: class B {
: static int i=0;
: }
: public class A{
: public static void main(String[] args){
: B.i = +2;
: System.out.println(B.i);
: }
: }
: 這樣是不是也可行呢,而且static variable是放在記憶體中Global的區塊喔
: ※ 引述《[email protected] (foolish)》之銘言:
: > 目標雖然達成了。但這實在是一個bad style
--
And I don't think that I'll see her again,
But we shared a moment that will last till the end.
You're beautiful. You're beautiful.
You're beautiful, it's true.
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.130.197.139
※ 編輯: webberhan 來自: 220.130.197.139 (10/16 14:46)
※ 編輯: webberhan 來自: 220.130.197.139 (10/16 14:51)
... <看更多>