Java编程—在测试中考虑多态
面向对象编程有三大特性:封装、继承、多态。
封装隐藏了类的内部实现机制,可以在不影响使用的情况下改变类的内部结构,同时也保护了数据。对外界而已它的内部细节是隐藏的,暴露给外界的只是它的访问方法。
继承是为了重用父类代码。两个类若存在is-a的关系就可以使用继承。,同时继承也为实现多态做了铺垫。那么什么是多态呢?多态的实现机制又是什么?请看我一一为你揭开:
所谓多态就是指程序中定义的引用变量所指向的具体类型和通过该引用变量发出的方法调用在编程时并不确定,而是在程序运行期间才确定,即一个引用变量倒底会指向哪个类的实例对象,该引用变量发出的方法调用到底是哪个类中实现的方法,必须在由程序运行期间才能决定。因为在程序运行时才确定具体的类,这样,不用修改源程序代码,就可以让引用变量绑定到各种不同的类实现上,从而导致该引用调用的具体方法随之改变,即不修改程序代码就可以改变程序运行时所绑定的具体代码,让程序可以选择多个运行状态,这就是多态性。练习(1):创建一个cycle类,它具有子类unicycle,bycycle,tricycle.演示每一个类型的实例都可以经由ride()方法向上转型为cycle.
向上转型就是允许将多种从同一基类的导出类看成同一类型。
多态方法调用就是允许一种类型表现出与其他相似类型之间的区别,只要他们是从同一基类导出而来的。这种区别由各个导出类型方法的具体不同实现而表现出来的,虽然这些方法都是由基类调用的。
public class test1 { public static void main(string[] args){ unicycle unicycle = new unicycle("unicycle"); bicycle bicycle = new bicycle("bicycle"); tricycle tricycle = new tricycle("tricycle"); cycle.ride(unicycle); cycle.ride(bicycle); cycle.ride(tricycle); } } class cycle{ private string name; public cycle(string str){ name = str; } public static void ride(cycle c){ system.out.println(c.name + "is riding"); } } class unicycle extends cycle{ private string name; public unicycle(string str) { super(str); name = str; } } class bicycle extends cycle{ private string name; public bicycle(string str) { super(str); name = str; } } class tricycle extends cycle { private string name; public tricycle(string str) { super(str); name = str; } }
输出:
unicycleis riding
bicycleis riding
tricycleis riding
在以上示例中,三种子类能被视作cycle传入到方法ride()中就是向上转型。
但向上转型只是看成,而不是强制转换,所以最后方法调用的结果不同,这就是多态。
多态又称之为动态绑定。什么是动态绑定?
与动态绑定相反的是静态绑定。c语言所有方法都是默认静态绑定。静态绑定也称为前期绑定,就是在程序运行前就绑定完成。也就是说,代码写了什么样,就是什么样。
而动态绑定是直到运行时才去决定该方法调用该绑定哪个实体。
java中的所有static和final方法都是静态绑定,其他的所有方法都是动态绑定。
练习(2):在几何图形示例中添加@override注解。
练习(3):在基类shape.java中添加一个新方法,用于打印一条消息,但导出类中不要覆盖这个方法。请解释发生了什么。现在,在其中一个导出类中覆盖该方法,而在其他的导出类中不予覆盖,观察又有什么发生。最后,在所有的导出类中覆盖这个方法。
练习(4):向shapes.java中添加一个新的shape类型,并在main()方法中验证:多态对新类型的作用是否与在旧类型中的一样。
以上三个练习在一份示例中完成。
public class test234 { private static randonshapegenerator gen = new randonshapegenerator(); public static void main(string[] args){ shape[] shapes = new shape[9]; for (int i = 0; i < shapes.length; i++) { shapes[i] = gen.next(); } for (shape s : shapes) { s.draw(); s.newmethod();//每个子类都调用了一次添加的新方法, // 因为子类继承父类自然把所有方法都继承过去了,只不过没有显示出来, // 其实是隐式的存在的,子类调用的其实是继承自父类的没有重写的方法, // 看起来像是调用了父类的方法 } shape s = new recf();//这里是声明了一个shape类型的引用,但实际的对象还是recf. s.draw();//输出的是recf类重写的方法,证明多态对新类的作用于在旧类中是一样的 } } class shape{//基类 public void draw(){} public void erase(){} public void newmethod(){ system.out.println("new method");//添加的新方法 } } class circle extends shape{ @override//添加注解,一般ide可以自动添加 public void draw() { system.out.println("draw circle"); } @override public void erase() { system.out.println("erase circle"); } } class square extends shape{ @override public void draw() { system.out.println("draw square"); } @override public void erase() { system.out.println("erase square"); } @override public void newmethod() { system.out.println("square new method"); //重写后该类输出内容就发生改变,没有重写时该类的该方法与父类运行结果相同 //无论重写与否,其实调用的都是自身的方法 //只是没有重写时方法调用结果与父类的相同 } } class triangle extends shape{ @override public void draw() { system.out.println("draw triangle"); } @override public void erase() { system.out.println("erase triangle"); } } class recf extends shape{//新添加的方法 @override public void draw() { system.out.println("recf draw"); } @override public void erase() { system.out.println("recf erase"); } } class randonshapegenerator{//是一种工厂,用以随机获取一种shape的子类 private random rand = new random(100); public shape next(){ switch (rand.nextint(3)){ default: case 0:return new circle(); case 1:return new square(); case 2:return new triangle(); } } }
练习(5):以练习1为基础,才cycle中添加wheels()方法,它将返回*的数量。修改ride()方法,让它调用wheels()方法,并验证多态起作用了。
在练习(1)的代码中给基类添加
public void wheels(){ system.out.println("*数量是" + num); }
然后在main中:
unicycle.wheels(); bicycle.wheels(); tricycle.wheels();
最后输出结果都顺利输出了方法中的语句,证明多态确实起作用了。
练习(6):修改music3.java,是what()方法成为根object的tostring()方法。试用system.out.pringtln()方法打印instrument对象(不用向上转型).
练习(7):向music3.java添加一个新的类型instrument,并验证多态性是否作用于所添加的新类型.
练习(8):修改music3.java,使其可以向shapes.java中的方式那样随机创建instrument对象。
三个练习将在一份代码完成。
public class test678 { public static void main(string[] args){ instrument[] orchestar = { new wind(), new percussion(), new stringed(), new brass(), new woodwing() }; tuneall(orchestar); newinstrument ni = new newinstrument(); ni.play(note.b_flat);//验证多态性是否适用于所添加的新类型,答案是确实适用。 } public static void tune(instrument instrument){ instrument.play(note.middle_c);//无论传进声明子类,都播放middle_c } public static void tuneall(instrument[] e){ for (instrument i : e) { tune(i); system.out.println(i.tostring()); } } } class randominsfactory{//工厂类,用于随机生成一个instrument的子类 private random ran = new random(47); public instrument next(){ switch (ran.nextint(5)){ default: case 0:return new wind(); case 1:return new percussion(); case 2:return new stringed(); case 3:return new brass(); case 4:return new woodwing(); case 5:return new newinstrument(); } } } enum note{//枚举类,存放了哪些音乐 middle_c,c_harpe,b_flat; } class instrument { void play(note note){ system.out.println("instrument.play() : " + note); } string what(){ return "instrument"; } void adjust(){ system.out.println("adjusting instrument"); } @override public string tostring() { // /添加一个tostring方法,调用当前what方法, // 子类会自动继承该方法并分别返回给自what()里的内容 return what(); } } class wind extends instrument{ @override void play(note note) { system.out.println("wind.play() : " + note); } @override string what() { return "wind"; } @override void adjust() { system.out.println("adjusting wind"); } } class percussion extends instrument{ @override void play(note note) { system.out.println("percussion.play() : " + note); } @override string what() { return "percussion"; } @override void adjust() { system.out.println("adjusting percussion"); } } class stringed extends instrument{ @override void play(note note) { system.out.println("stringed.play() : " + note); } @override string what() { return "stringed"; } @override void adjust() { system.out.println("adjusting stringed"); } } class brass extends wind{//继承自wind @override void play(note note) { system.out.println("brass.play() : " + note); } @override void adjust() { system.out.println("adjusting brass"); } } class woodwing extends wind{ @override void play(note note) { system.out.println("woodwing.play() : " + note); } @override string what() { return "woodwing"; } } class newinstrument extends instrument{//新添加的类型 @override void play(note note) { system.out.println("newins.play()" + note); } }
练习(9):创建rodent(啮齿动物):mouse(老鼠),gerbil(鼹鼠),hamster(大颊鼠),等等这样一个的继承层次结构。在基类中,提供对所有的rodent都通用的方法,在导出类中,根据特定的rodent类型覆盖这些方法,以便观察它们执行不同的行为。创建一个rodent数组,填充不同的rodent类型,然后调用基类方法,观察发生了什么情况。
这跟前面instrument的例子相似,在instrument中有what()这个对所有instrument都通用的方法,而在每个子类中我们都覆盖了这个方法并赋予了不同的行为,最终在main中创建了instrument数组,调用了基类方法,最后得到的结果是不同类调用基类方法得到的输出是该类重写后的结果。不再重复。
练习(10):创建一个包含两个方法的基类。在第一个方法中可以调用第二个方法。然后产生一个继承自该基类的导出类,且覆盖基类中的第二个方法。为该导出类创建一个对象,将它向上转型为基类并调用第一个方法,解释发生的情况。
public class test10 { public static void main(string[] args){ jilei j = new daochulei();//创建导出类的对象并转型为基类 j.first();//调用第一个方法 //结果输出daochulei is running //原因,就像前面提过的,导出类继承了基类的所有东西,没有重写的方法隐藏了起来 //其实在daochulei中还隐士的有void first()这个方法里调用了自身重写的second() //当daochulei调用first()方法后,它就调用了自身重写的second()方法。 //导出类调用基类方法其实不是真的调用,而是调用自身继承自基类的方法, // 只不过这个方法没重写时,内部形式与基类相同 } } class jilei{ void first(){//调用第二个方法 second(); } void second(){ system.out.println("first is running"); } } class daochulei extends jilei{ @override void second() { system.out.println("daochulei is running"); } }
练习(11)跳过
练习(12):修改练习(9),使其能够演示基类和导出类的初始化顺序。然后向基类和导出类中添加成员对象,并说明构建期间初始化发生的顺序。
public class test912 { public static void main(string[] args){ new hamster(); } } class rodent{ public rodent(){ shanghai = 100; system.out.println("rodent"); } private int shanghai; public void bite(){ system.out.println("造成伤害" +shanghai + "点" ); } } class mouse extends rodent{ private int sh; public mouse(){ sh = 1000; system.out.println("mouse"); } @override public void bite() { system.out.println("造成伤害" +sh + "点" ); } } class gerbil extends mouse{ private int shang; public gerbil(){ shang = 2000; system.out.println("gerbil"); } @override public void bite() { system.out.println("造成伤害" +shang + "点" ); } } class hamster extends gerbil{ private mouse mouse = new mouse();//成员对象 //该类初始化输出结果 //rodent // mouse // gerbil // rodent // mouse // hamster //可以分析出,初始化时先调用基类的构造方法, // 然后初始化成员变量,因为其中有mouse这个成员对象,所有对mouse进行初始化, // 完成后再调用自身的构造方法 private int hai; public hamster(){ hai = 3000; system.out.println("hamster"); } @override public void bite() { system.out.println("造成伤害" + hai + "点" ); } }
总结
以上就是本文关于java编程—在测试中考虑多态的全部内容,希望对大家有所帮助。欢迎参阅:java面向对象编程(封装/继承/多态)实例解析、java实现微信公众平台朋友圈分享功能详细代码、java编程bigdecimal用法实例分享等,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!