本文主要是介绍java出现一些小狗狗的画面_Java 狗狗类?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
展开全部
public class Dog {
/**
* 昵称
*/
private String nickname;
/**
* 品种
*/
private String type;
/**
* 颜色62616964757a686964616fe4b893e5b19e31333433653338
*/
private String color;
public void selfIntroduction(){
System.out.println("Dog{" +
"昵称='" + nickname + '\'' +
", 品种='" + type + '\'' +
", 颜色='" + color + '\'' +
'}');
}
public Integer speed(){
//不清楚具体需求 可额外设置个属性 返回该属性 或在该方法中写自己的计算公式
return 1;
}
public Dog() {
}
public Dog(String nickname, String type, String color) {
this.nickname = nickname;
this.type = type;
this.color = color;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
}
这篇关于java出现一些小狗狗的画面_Java 狗狗类?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!