// 定义静态变量,保存班级名称
static String className = "JAVA开发一班";
public static void main(String[] args) {
// 访问静态变量,输出班级名称
System.out.println(HelloWorld.className );
}
static String className = "JAVA开发一班";
public static void main(String[] args) {
// 访问静态变量,输出班级名称
System.out.println(HelloWorld.className );
}
2015-07-18
Traffic t = new Traffic();
Traffic s = new Ship();
Traffic p = new Plane();
Traffic c = new Car();
t.way();
s.way();
p.way();
c.way();
Traffic s = new Ship();
Traffic p = new Plane();
Traffic c = new Car();
t.way();
s.way();
p.way();
c.way();
2015-07-18
抽象类使用规则
a. abstract定义抽象类;
b. sbstract定义抽象方法,只有声明,不需要实现;
c. 包含抽象方法的类是抽象类;
d. 抽象类中可以包含普通的方法,也可以没有抽象的方法;
e. 抽象类不能直接创建,可以定义引用变量。
a. abstract定义抽象类;
b. sbstract定义抽象方法,只有声明,不需要实现;
c. 包含抽象方法的类是抽象类;
d. 抽象类中可以包含普通的方法,也可以没有抽象的方法;
e. 抽象类不能直接创建,可以定义引用变量。
2015-07-17