摘要: package com.hspedu.polyarray_; import org.junit.Test; public class TestPolyArray { /** * 多态数组 */ @Test public void testPolyArray() { Animal[] animals 阅读全文
posted @ 2022-05-09 17:11 柯南同学 阅读(54) 评论(0) 推荐(0) 编辑
摘要: package com.hspedu.dynamicbind_; import org.junit.Test; public class TestDynamicBind { @Test public void testDynamicBind() { Base sub = new Sub(); /** 阅读全文
posted @ 2022-05-09 16:52 柯南同学 阅读(36) 评论(0) 推荐(0) 编辑
摘要: package com.hspedu.instanceof_;import org.junit.Test;public class TestInstanceof { @Test public void testInstanceof() { Son son = new Son(); System.ou 阅读全文
posted @ 2022-05-09 16:32 柯南同学 阅读(22) 评论(0) 推荐(0) 编辑