A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 廉伟杰 中级黑马   /  2014-1-22 16:12  /  1196 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 廉伟杰 于 2014-1-23 12:49 编辑
  1. interface IUsb//定义一种规范
  2. {
  3.         void use();
  4. }
  5. class MouseUsbImpl implements IUsb
  6. {
  7.         public void use()
  8.         {
  9.                 System.out.println("使用USB鼠标");
  10.         }
  11. }
  12. class PrintUsbImpl implements IUsb
  13. {
  14.         public void use()
  15.         {
  16.                 System.out.println("使用USB打印机");
  17.         }
  18. }
  19. class Computer
  20. {
  21.         public void run(IUsb a)//这点体现了多态的方便
  22.         {
  23.                 a.use();
  24.         }
  25. }
  26. class  Demo2
  27. {
  28.         public static void main(String[] args)
  29.         {
  30.                 IUsb mouse = new MouseUsbImpl();//多态
  31.                 IUsb printl = new PrintUsbImpl();
  32.                 Computer c = new Computer();
  33.                 c.run(mouse);
  34.                 c.run(printl);
  35.                 System.out.println("Hello World!");
  36.         }
  37. }
复制代码



Demo2.java:21: 错误: 非法字符: \65289
        public void run(IUsb a)//这点体现了多态的方便
                              ^
1 个错误

2 个回复

倒序浏览
在我这里运行是正确的,没有错误!
回复 使用道具 举报
在我这运行正常
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马