另一个办法, 有前提的
所在版块:社会百科 发贴时间:2003-06-02 20:46  评分:

用户信息
复制本帖HTML代码
高亮: 今天贴 X 昨天贴 X 前天贴 X 
如果要调用的class们有相同的method, 如public static void print(), 一般来说这些class都是某一个parent class的children,
并且这些class的总数不多, 可以如下办

设class们是 Child1, Child2, Child3..., parent class is Parent, method是print,

Parent anObject = however_you_created_it;
if (anObject instanceof Child1)
Child1.print();
else if (anObject instanceof Child2)
Child2.print();
...
...
...
.
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!

Put your OWN COOL signature here!
 相关帖子 我要回复↙ ↗回到正文
JAVA problem 百及子   (428 bytes , 470reads )
Some points here: Flying   (403 bytes , 244reads )
终於盼到希望了 百及子   (150 bytes , 224reads )
你是要这样吗? 我心为谁动   (1007 bytes , 229reads )
No, not necessary. Flying   (82 bytes , 180reads )
flying再来 百及子   (159 bytes , 186reads )
另一个办法, 有前提的 我心为谁动   (393 bytes , 242reads )