亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

主類怎么加進去啊,代碼錯了不會改

public class dog { int age =5; String name="樂樂"; String color="白色"; int weight =10; String sex="female"; void eat() { } void look() { } void yao() { } void run() { } void swim() { } {System.out.println("beef"); System.out.println("person"); System.out.println("旺旺~~~~~"); System.out.println("quick"); System.out.println("會"); } public class dog1 extends dog {public dog1(){ super(); }??? public class dog2 extends dog??? {public dog2(){??? this();??? ??? }??? }
??? public static void main (String args[]) { dog dog=new dog(); System.out.println("姓名:"+dog.name); System.out.println("年齡:"+dog.age); System.out.println("顏色:"+dog.color); System.out.println("體重:"+dog.weight); System.out.println("性別:"+dog.sex); dog.eat(); dog.look(); dog.yao(); dog.run(); dog.swim();}

正在回答

5 回答

public?class?Dog?{	
	int?age?=5;	
	String?name="樂樂";	
	String?color="白色";	
	int?weight?=10;	
	String?sex="female";	
	void?eat()	{	}	
	void?look()	{	}	
	void?yao()	{	}	
	void?run()	{	}	
	void?swim()	{	}	
	{
		System.out.println("beef");	
		System.out.println("person");	
		System.out.println("旺旺~~~~~");	
		System.out.println("quick");	
		System.out.println("會");	
	}	
????class?dog1?extends?Dog{public?dog1(){	super();??}?}????
????class?dog2?extends?Dog{public?dog2(){???super();??}?}?
????public?static?void?main(String?args[]){	
		Dog?dog=new?Dog();	
		System.out.println("姓名:"+dog.name);	
		System.out.println("年齡:"+dog.age);	
		System.out.println("顏色:"+dog.color);	
		System.out.println("體重:"+dog.weight);	
		System.out.println("性別:"+dog.sex);	
		dog.eat();	
		dog.look();	
		dog.yao();	
		dog.run();	
		dog.swim();
????}
}


1 回復 有任何疑惑可以回復我~

public class Test {

int age =5;

String name="樂樂";

String color="白色";

int weight =10;

String sex="female";

void eat() {

System.out.println("beef");

}

void look() {

System.out.println("person");

}

void yao() {

System.out.println("旺旺~~~~~");

}

void run() {

System.out.println("quick");

}

void swim() {

System.out.println("會");

}

public class dog1 extends Test {

public dog1(){ super(); ?

}

}

public class dog2 extends Test ? ?{

public dog2(){

super(); ? ? ??

} ? ?

}?

public static void main (String args[]) {

Test dog=new Test();

System.out.println("姓名:"+dog.name);

System.out.println("年齡:"+dog.age);

System.out.println("顏色:"+dog.color);

System.out.println("體重:"+dog.weight);

System.out.println("性別:"+dog.sex);

dog.eat(); ?

dog.look(); ?

dog.yao(); ?

dog.run(); ?

dog.swim();

}

}


0 回復 有任何疑惑可以回復我~

不要在同一個java文件里寫好幾個類,public class一個類中只能出現一次。還有你括號丟了很多啊。主類就是main方法所在的類。你最后丟了個括號,只剩下方法,當然沒類了。

1 回復 有任何疑惑可以回復我~
#1

終結丶天涯

主類就是public修飾的class,并且里面有main方法。一個文件里,只能有一個主類。
2016-10-09 回復 有任何疑惑可以回復我~
#2

終結丶天涯 回復 終結丶天涯

汗,暈了,主類就是public修飾的class,一個文件里,只能有一個主類。完畢。
2016-10-09 回復 有任何疑惑可以回復我~
#3

cute倩影O_o 提問者

我剛開始是這樣想的,開頭的那個是父類,后面要加主類,就不知道怎么加了,謝謝
2016-10-09 回復 有任何疑惑可以回復我~

同一個文件里,只能有一個類為public,另定義的另兩個子類,不能加public。


public class Dog {
?? ?public static void main(String args[]) {
?? ??? ?Dog dog = new Dog();
?? ??? ?System.out.println("姓名:" + dog.name);
?? ??? ?System.out.println("年齡:" + dog.age);
?? ??? ?System.out.println("顏色:" + dog.color);
?? ??? ?System.out.println("體重:" + dog.weight);
?? ??? ?System.out.println("性別:" + dog.sex);
?? ??? ?dog.eat();
?? ??? ?dog.look();
?? ??? ?dog.yao();
?? ??? ?dog.run();
?? ??? ?dog.swim();
?? ?}

?? ?int age = 5;
?? ?String name = "樂樂";
?? ?String color = "白色";
?? ?int weight = 10;
?? ?String sex = "female";

?? ?void eat() {
?? ?}

?? ?void look() {
?? ?}

?? ?void yao() {
?? ?}

?? ?void run() {
?? ?}

?? ?void swim() {
?? ?}

?? ?{
?? ??? ?System.out.println("beef");
?? ??? ?System.out.println("person");
?? ??? ?System.out.println("旺旺~~~~~");
?? ??? ?System.out.println("quick");
?? ??? ?System.out.println("會");
?? ?}

?? ?class dog1 extends Dog {
?? ??? ?public dog1() {
?? ??? ??? ?super();
?? ??? ?}

?? ??? ?class dog2 extends Dog {
?? ??? ??? ?public dog2() {
?? ??? ??? ??? ?super();
?? ??? ??? ?}
?? ??? ?}
?? ?}
}

1 回復 有任何疑惑可以回復我~
#1

cute倩影O_o 提問者

謝謝你的回復,可是子類怎么用完全覆蓋,部分覆蓋等其他方法去繼承父類啊
2016-10-09 回復 有任何疑惑可以回復我~

dog2 繼承還是用super()啊,你怎么用的this

0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

主類怎么加進去啊,代碼錯了不會改

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號