用法
1、程序在編譯的時候調用的其實是父類的eat方法,但是在運行時運行的則是子類的eat方法,運行期間發(fā)生了綁定。
2、使用前題,先向上轉型,通過父類引用來調用父類和子類同名的覆蓋方法
實例
package chapeter04;
class Test
{
public Test() { }
public void setName(String n)
{
this.name=n;
System.out.println("在父類中");
}
public String getName()
{
return this.name;
}
private String name;
}
public class Sample4_12 extends Test
{
public void setArea(String a)
{
this.area=a;
}
public String getArea()
{
return this.area;
}
public static void main(String[] args)
{
// TODO Auto-generated method stub
Sample4_12 child = new Sample4_12();
Test test []=new Test[2];
test[0]=child;
test[0].setName("silence");
test[1]=new Test();
}
private String area;
}
以上就是java動態(tài)綁定的使用,大家在開始使用前,需要對其的使用前提進行明確。更多關于“java培訓”的問題,歡迎咨詢千鋒教育在線名師。千鋒教育多年辦學,課程大綱緊跟企業(yè)需求,更科學更嚴謹,每年培養(yǎng)泛IT人才近2萬人。不論你是零基礎還是想提升,都可以找到適合的班型,千鋒教育隨時歡迎你來試聽。