作者在 2010-05-13 15:11:28 发布以下内容
重载:
在同一个类中,方法名相同,参数类型不同
class Inof{
public void info(int a){
System.out.println("你调用的是第一个值");
}
public void info(int a,int b){
System.out.println("你调用的是第二个值");
}
}
class Inof{
public void info(int a){
System.out.println("你调用的是第一个值");
}
public void info(int a,int b){
System.out.println("你调用的是第二个值");
}
}
~~~~~~~~~~~~~~~~~~~··
在类中使用this代表使用该方法的对象引用
在本类中使用this(参数列表)调用本类的构造方法
~~~~~~~~~~~~~~~~~~·····
重写
在继承关系下,子类要重写基类的方法,叫做重写
方法名相同,返回类型相同,参数列表相同
子类的重写方法不能大于基类的权限
可用super()方法来引用基类的成分。super()必须放到第一行