程序参考运行效果图如下:
任务
1、创建Monkey类
属性:名称(name)和特征(feature)
方法:
1) 无参构造方法(默认初始化 name 和 feature 的属性值,属性值参考效果图)
2) 带参构造方法,接收外部传入的参数,分别向 name 和 feature 赋值
2、创建测试类
分别通过无参构造方法和带参构造方法,完成对象实例化实例化对象,并打印输出对象信息,输出格式如效果图。
public class Monkey {
String name;
String feature;
public Monkey(){
name = "长尾猴";
feature = "尾巴长";
System.out.println("我是使用无参构造产生的猴子:");
System.out.println("名称:" + name);
System.out.println("特征:" + feature);
}
public Monkey(String name, String feature){
System.out.println("我是使用带参构造产生的猴子:");
System.out.println("名称:" +name);
System.out.println("特征:" + feature);
}
}
public class MonkeyTest {
public static void main(String[] args) {
Monkey one = new Monkey();
System.out.println("============================");
Monkey two = new Monkey("白头叶猴","头上有白毛,喜欢吃树叶");
}
}
输出结果为: