子类继承父类 父类中声明了接口变量 接口AB中声明了抽象方法 ab
在子类中 可以用这样通俗的语句写程序:
while (!(this.termination.shouldTerminate())) {
pnew.g = this.unary.mutate(pnew.g, this.random);
pnew.x = this.gpm.gpm(pnew.g);
。。。
}
这样的语句只有在创建了相应的实例之后才会运行,这就是多态
运行时动态链接,main()方法中
this.unary=new PermutationUnarySwap(); //PermutationUnarySwap类实现了接口AB的方法ab
unary是接口引用
unaryunary
只有在实例化对象之后上述while程序中的语句才有意义了 ---OOP