3、定义一个笔记本类,该类有颜色(char)和cpu
型号(int)两个属性。 [必做题]
• 3.1 无参和有参的两个构造方法;有参构造方法可
以在创建对象的同时为每个属性赋值;
• 3.2 输出笔记本信息的方法
• 3.3 然后编写一个测试类,测试笔记本类的各个
方法。
package finish; public class ttt { int cpu; char color; public void all() { System.out.println("颜色是" + color); System.out.println("cpu是" + cpu); } }
package finish; public class hhh extends ttt { public static void main(String[] args) { ttt R= new ttt(); R.color='黑'; R.cpu=9100; R.all(); } }
5、定义两个类,描述如下: [必做题]
• 5.1定义一个人类Person:
• 5.1.1定义一个方法sayHello(),可以向对方发出问
候语“hello,my name is XXX”
• 5.1.2有三个属性:名字、身高、年龄
• 5.2定义一个PersonCreate类:
• 5.2.1创建两个对象,分别是zhangsan,33岁,1.73
;lishi,44,1.74
• 5.2.2分别调用对象的sayHello()方法。
package finish; public class ttt { String name; double height; int age; public void sayHello() { System.out.println("hello,my name is" + name); System.out.println("我的身高是" + height); System.out.println("我的年龄是" + age); } } package finish; public class hhh extends ttt { public static void main(String[] args) { ttt R1= new ttt(); R1.name="zhangsan"; R1.age=33; R1.height=1.73; ttt R2 = new ttt(); R2.name="lisi"; R2.age=44; R2.height=1.74; R1.sayHello(); R2.sayHello(); } }