为了账号安全,请及时绑定邮箱和手机立即绑定

主类怎么加进去啊,代码错了不会改

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下载
官方微信