JAVA简单问题

设计一个Dog类,有名字、颜色和年龄属性,定义构造方法初始化这些属性,定义输出方法show()显示其信息。编写应用程序使用Dog类。... 设计一个Dog类,有名字、颜色和年龄属性,定义构造方法初始化这些属性,定义输出方法show()显示其信息。编写应用程序使用Dog类。 展开
 我来答
Christ_earl
2009-11-12 · TA获得超过1245个赞
知道小有建树答主
回答量:239
采纳率:0%
帮助的人:0
展开全部
public class TestDog {
public static void main(String[] args){
Dog dog = new Dog("wangcai","black",5);
dog.show();
}
}

class Dog{
String name;
String color;
int age ;
public Dog(String name,String color,int age){
this.age = age;
this.name = name;
this.color = color;
}

public void show(){
System.out.print("名字是 : "+this.name+", 颜色是:"+this.color+",年龄是"+this.age);
}
}
结果为:
名字是 : wangcai, 颜色是:black,年龄是5
我宜4507
2009-11-12 · TA获得超过980个赞
知道小有建树答主
回答量:1852
采纳率:0%
帮助的人:959万
展开全部
class Dog {
String name;
String color;
int age;

public Dog(String name, String color, int age) {
this.name = name;
this.color = color;
this.age = age;
}

public void show() {
System.out.println("name is " + this.name + " " + "color is "
+ this.color + " " + "age is " + this.age);
}
}

public class Test {

public static void main(String[] args) {
Dog d = new Dog("nihao", "red", 21);
d.show();

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式