摘要: 举个例子:有2个类,Father是父类,Son类继承自Father。Father f1 = new Son(); // 这就叫 upcasting (向上转型)// 现在f1引用指向一个Son对象Son s1 = (Son)f1; // 这就叫 downcasting (向下转型)// 现在f1还是指向Son对象第2个例子:Father f2 = new Father();Son s2 = (So... 阅读全文
posted @ 2010-04-07 09:11 玩玩乐乐 阅读(165) 评论(0) 推荐(0) 编辑