定义一个女朋友类。女朋友的属性包含:姓名身高体重。行为包含:洗衣服wash做饭cook。另外定义一个用于展示三个属性值的show方法。请在测试类中通过有参构造方法创建对象并赋值然后分别调用展示方法、洗衣服方法和做饭方法。打印效果如下:我女朋友叫凤姐身高1550厘米体重1300斤 女朋友帮我洗衣服 女朋友给我做饭
女朋友类的代码如下:
public class Girlfriend { private String name; private double height; private double weight;
public Girlfriend(String name, double height, double weight) {
this.name = name;
this.height = height;
this.weight = weight;
}
public void wash() {
System.out.println("女朋友帮我洗衣服");
}
public void cook() {
System.out.println("女朋友给我做饭");
}
public void show() {
System.out.println("我女朋友叫" + name + ",身高" + height + "厘米,体重" + weight + "斤");
}
}
测试类的代码如下:
public class Test { public static void main(String[] args) { Girlfriend girlfriend = new Girlfriend("凤姐", 155.0, 130.0); girlfriend.show(); girlfriend.wash(); girlfriend.cook(); } }
输出结果为:
我女朋友叫凤姐,身高155.0厘米,体重130.0斤 女朋友帮我洗衣服 女朋友给我做
原文地址: https://www.cveoy.top/t/topic/fEtp 著作权归作者所有。请勿转载和采集!