黑马程序员技术交流社区

标题: 求解 [打印本页]

作者: zhanganping    时间: 2016-1-22 22:10
标题: 求解
在空白处选择填写正确代码

  1. interface Parent{
  2.     public int count(int i);
  3. }
  4. public class Test implements Parent {
  5.     public int count(int i){
  6.         return i % 9;
  7. }
  8. }
  9.            public static void main(String[] args){
  10.         ________________
  11.         int i = p.count(20);
  12.     }
  13. }

  14.         A.        Test p = new Test();
  15.         B.        Parent p;
  16.         C.        Parent p = new Parent();
  17.         D.        Test p = new Parent();
复制代码






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2