赞
踩
目录
主要内容:
1、接口
为“无名的粉”写一个类class WuMingFen,要求:1.有三个属性,面码:String theMa、粉的分量(两)int quantity、是否带汤boolean likeSoup ;2.写一个构造方法,以便于简化初始化过程,如WuMingFen f1 = new WuMingFen("牛肉",3,true); 3.重载构造方法使得初始化过程可以多样化WuMingFen f2 = new WuMingFen("牛肉",2); 4.如何使得下列语句构造出来的粉对象是酸辣面码、2两、带汤的WuMingFen f3 = new WuMingFen(); 5.写一个普通方法check(),用于查看粉是否符合要求。即将对象的三个属性打印在控制台上。
public class WuMingFen { String theMa; int quantity; boolean lookSoup;
public WuMingFen() { // 无参构造器 }
public WuMingFen(String theMa, int quantity, boolean lookSoup) { // 有参构造器 this.theMa = theMa; this.quantity = quantity; this.lookSoup = lookSoup; }
public WuMingFen(String theMa, int quantity) { // 有参构造器 this.theMa = theMa; this.quantity = quantity; }
public void check() { System.out.println("theMa:" + theMa + ",quantity:" + quantity + ",lookSoup:" + lookSoup); } }
|
public class MyTest { public static void main(String[] args) { // 第一个要求 WuMingFen wumingfen1 = new WuMingFen("牛肉", 3, true); wumingfen1.check(); // 第二个要求 WuMingFen wumingfen2 = new WuMingFen("牛肉", 2); wumingfen2.check(); // 第三个要求 WuMingFen wumingfen3 = new WuMingFen(); wumingfen3.theMa = "酸辣面"; wumingfen3.quantity = 2; wumingfen3.lookSoup = true; wumingfen3.check(); } } |
代码格式化:
1、默认是Ctrl+Shift+F 无效(原因:快捷键冲突),修改快捷键
Preferences->General->Keys Format
2、Preferences->Java->Editors->Save Actions
建立一个汽车Auto类,包括轮胎个数、汽车颜色、车身重量、速度等成员变量、并通过不同的构造方法创建实例。至少要求汽车能够加速、减速、停车。再定义一个小汽车类Car,继承Auto,并添加空调、CD等成员变量和覆盖加速、减速的方法。
public class Auto { int number;// 轮胎个数 String color; double weight; double speed;
public Auto() {
}
public Auto(int number, String color, double weight, double speed) { this.number = number; this.color = color; this.weight = weight; this.speed = speed; }
public void speedUp() { System.out.println("车子加速!!!!"); }
public void speedDown() { System.out.println("车子减速!!!!"); }
public void stop() { System.out.println("车子停止!!!!"); } }
|
public class Car extends Auto { String airCondition; String cd;
public Car() {
}
public Car(String airCondition, String cd, int number, String color, double weight, double speed) { super(number, color, weight, speed); // 父类有参构造器 this.airCondition = airCondition; this.cd = cd; }
public void speedUp() { System.out.println("小汽车加速!!!!"); }
public void speedDown() { System.out.println("小汽车减速!!!!"); } } |
public class MyTest { public static void main(String[] args) { Car car = new Car("海尔", "VCD/DVD/DVCD", 4, "red", 2000.00, 0.0); car.speedDown(); car.speedUp(); car.stop(); } } |
创建一个Vehicle类并将它声明为抽象类。在Vehicle类中声明一个NoOfWheels方法,使它返回一个字符串值。创建两个类Car和Motorbike从Vehicle类继承,并在这两个类中实现NoOfWheels方法。在Car类中,应当显示“四轮车”信息;而在Motorbike类中应当显示“双轮车”信息。创建另一个带main方法的类,在该类中创建Car和Motorbike的实例,并在控制台中显示消息。
public abstract class Vehicle { public abstract void NoOfWheels(); } |
public class Car extends Vehicle { public void NoOfWheels() { System.out.println("四轮车!!!!"); } } |
public class Motorbike extends Vehicle { public void NoOfWheels() { System.out.println("双轮车!!!!"); } } |
public class Main { public static void main(String[] args) { Vehicle Car=new Car(); //多态,向上转型 Car.NoOfWheels(); Vehicle Motorbike=new Motorbike(); Motorbike.NoOfWheels(); } } |
1、继承的特点:
只支持单继承
支持多层继承
超类拥有公共非私有方法,最底层的子类拥有全部非私有方法
2、继承的成员访问:
成员变量:不同名的非私有成员变量可以直接方法,同名的非私有成员变量遵循就近原则。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。