注册
 找回密码
 注册
江西广告网
查看: 415|回复: 0
打印 上一主题 下一主题

Core

[复制链接]

该用户从未签到

1
跳转到指定楼层
发表于 2009-2-24 10:37:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?注册

x
接口的使用: 1 多态的情况下使用接口:分为编译时和运行时的状态。 2 注意对象的相同性。 3 强制转换的情况。 package com; public interface Animal { } package com; /*** * * 鸟类 * * @author Administrator * */ public class Bird implements Animal { public Bird() { } public String color; private int age; public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } } package com; public class SamllBird extends Bird { } package com; import java.lang.reflect.InvocationTargetException; public class Test { public static void main(String[] args) throws ClassNotFoundException, SecurityException, NoSuchFieldException, IllegalArgumentException, IllegalAccessException, NoSuchMethodException, InvocationTargetException { Animal b = new Bird(); b.toString(); Bird bird = (Bird)b; bird.setColor("red"); System.out.println(bird.getColor()); System.out.println(b==bird); Animal sb = new SamllBird(); Bird bb = (Bird)sb; System.out.println(sb==bb); System.out.println(b instanceof Animal); System.out.println(bird instanceof Animal); System.out.println(sb instanceof Animal); } } 运行结果: red true true true true true
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表