第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

設(shè)置數(shù)組的值不起作用 - 為什么?

設(shè)置數(shù)組的值不起作用 - 為什么?

開滿天機 2023-03-31 10:06:17
我正在嘗試在 android studio/java 中聲明一個整數(shù)數(shù)組。當(dāng)我嘗試設(shè)置這個數(shù)組的值時,android studio 無法識別它。我嘗試使用 String 而不是 int 和其他類型的數(shù)組,但我仍然得到相同的結(jié)果。int[] hello = new int[5];hello[0] = 1;第二條語句在 Android Studio 中帶有下劃線,將鼠標(biāo)懸停在它上面會顯示不同類型的錯誤,這意味著它無法識別該語句。如果我將指針移到 hello 上,我會得到“未知類:你好”。如果我將它移到語句的其他部分,我會得到“預(yù)期的標(biāo)識符”和“意外的標(biāo)記”。編輯:我的原始代碼中有分號,我只是沒有正確粘貼它。至于全班:public class MainActivity extends AppCompatActivity {    int hello[] = new int[5];    hello[1] = 2;    TextView texty;    String s = String.valueOf(hello[1]);    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        Log.d("mainy", s);    }    TextView t1 = findViewById(R.id.textView1);    TextView t2 = findViewById(R.id.textView2);    TextView t3 = findViewById(R.id.textView3);    TextView t4 = findViewById(R.id.textView4);    TextView t5 = findViewById(R.id.textView5);    public void nextPage(View view) {        Intent intent = new Intent(this, SecondActivity.class);        startActivityForResult(intent, 1);    }    @Override    protected void onActivityResult(int requestCode, int resultCode, Intent data){        super.onActivityResult(requestCode, resultCode, data);        if (requestCode == 1){            if (resultCode == RESULT_OK){                String s = data.getStringExtra(SecondActivity.KEY);                texty.setText(s);            }        }    }}
查看完整描述

1 回答

?
UYOU

TA貢獻1878條經(jīng)驗 獲得超4個贊

這實際上是你缺乏的關(guān)于Java的基本知識,這個問題不應(yīng)該出現(xiàn)在stackoverflow上。您不能在方法之外實現(xiàn)邏輯。您只能聲明變量。


你應(yīng)該做的是這樣的:


public class MainActivity extends AppCompatActivity {

    int hello[];

    TextView texty;

    String s;


    void method(){

        hello = new int[5];

        hello[1] = 2;

        s = String.valueOf(hello[1])

    }

}


查看完整回答
反對 回復(fù) 2023-03-31
  • 1 回答
  • 0 關(guān)注
  • 146 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號