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

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

怎么運(yùn)行不出來?

public?class?HelloWorld{
????static??int?age;
????char?sex;
????string?name;
????public?HelloWorld(){
????????age=20;
????????System.out.println("通過靜態(tài)初始化塊初始age");
????}
????{
????????sex=男;
????????System.out.println("通過初始化塊初始化sex");
????}
????{
????????name=tom;
????????System.out.println("通過構(gòu)造方法初始化name");
????}
????public?static?void?main(String[]?args){
????HelloWorld?hello=new?HelloWorld();
????System.out.println("姓名:"+hello.name,"性別:"+hello.name,"年齡:"+hello.age);
}
}


正在回答

5 回答

錯(cuò)誤很多

1、第4行 ? ? ?? 字符串聲明String?? s應(yīng)該為大寫

2、第7行? ? ? ? 內(nèi)容應(yīng)該為通過構(gòu)造方法初始化age?? 沒有語法錯(cuò)誤 語義錯(cuò)誤

??????????????? ? ? ? 顯然這應(yīng)該是構(gòu)造方法? 同理第15行應(yīng)該為通過靜態(tài)初始化塊初始name

3、第10行????? sex是char類型?? 男應(yīng)該用單引號(hào)括起來??? sex ='男'

4、第14行????? name是String類型?? 應(yīng)用雙引號(hào)括起來?? name = "tom"

5、第19行????? 字符串與變量應(yīng)該用+隔開? 性別應(yīng)該為hello.sex

????????????????????? System.out.println("姓名:"+hello.name+",性別:"+hello.sex+",年齡:"+hello.age);

0 回復(fù) 有任何疑惑可以回復(fù)我~

?System.out.println("姓名:"+hello.name,"性別:"+hello.name,"年齡:"+hello.age); 這行代碼程序是不能執(zhí)行的,如果想要在三個(gè)數(shù)據(jù)間加逗號(hào),可以把逗號(hào)放在雙引號(hào)里面再執(zhí)行,寫作?System.out.println("姓名:"+hello.name+",性別:"+hello.name+",年齡:"+age);

0 回復(fù) 有任何疑惑可以回復(fù)我~

有好幾個(gè)錯(cuò)誤,修改后:

package com.imooc;

public class HelloWorld{

? ? static ?int age;

? ? String sex;

? ? String name;

? ? public HelloWorld(){

? ? ? ? age=20;

? ? ? ? System.out.println("通過靜態(tài)初始化塊初始age");

? ? }

? ? {

? ? ? ? sex="男";

? ? ? ? System.out.println("通過初始化塊初始化sex");

? ? }

? ? {

? ? ? ? name="tom";

? ? ? ? System.out.println("通過構(gòu)造方法初始化name");

? ? }

? ? public static void main(String[] args){

? ? HelloWorld hello=new HelloWorld();

? ? System.out.println("姓名:"+hello.name+"性別:"+hello.name+"年齡:"+hello.age);

}

}


0 回復(fù) 有任何疑惑可以回復(fù)我~

還有靜態(tài)代碼塊應(yīng)為,

static {

????????sex=男;

????????System.out.println("通過初始化塊初始化sex");

????}


0 回復(fù) 有任何疑惑可以回復(fù)我~

第四行應(yīng)為String,你的s小寫了

1 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

怎么運(yùn)行不出來?

我要回答 關(guān)注問題
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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