本文实例讲述了java方法重写,分享给大家供大家参考。具体分析如下:
一、方法的重写概述:
1、在子类中可以根据需要对从基类中继承来的方法进行重写。
2、重写的方法和被重写的方法必须具有相同方法名称、参数列表和返回类型。
3、重写方法不能使用比被重写的方法更严格的访问权限。
二、程序代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
class Person{
private int age;
private String name;
public void setAge( int age){
this .age = age;
}
public void setName(String name){
this .name = name;
}
public int getAge(){
return age;
}
public String getName(){
return name;
}
public String getInfo(){
return "Name is:" +name+ ",Age is " +age;
}
}
class Student extends Person{
private String school;
public void setSchool(String school){
this .school = school;
}
public String getSchool(){
return school;
}
public String getInfo(){
return "Name is:" +getName()+ ",Age is " +getAge()+ ",School is:" +school;
}
}
public class TestOverRide{
public static void main (String args[]){
Student student = new Student();
Person person = new Person();
person.setAge( 1000 );
person.setName( "lili" );
student.setAge( 23 );
student.setName( "vic" );
student.setSchool( "shnu" );
System.out.println(person.getInfo());
System.out.println(student.getInfo());
}
}
|
执行结果如下图所示:
希望本文所述对大家的Java程序设计有所帮助。