Test of the Java Skill(2)

2016-02-19 18:40 3 1 收藏

今天图老师小编给大家精心推荐个Test of the Java Skill(2)教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~

【 tulaoshi.com - 编程语言 】


     Question 9:
     What code placed after the comment:
       // Start For loop
     would populate the elements of the array ia[] with values of the variables i ?
  
     public class Lin{
     public static void main(String argv[]){
     Lin l = new Lin();
     l.amethod();
     }
  
     public void amethod(){
     int ia[] = new int[4];
     // Start For loop
     {
     ia[i] = i;
     System.out.println(ia[i]);
     }
     }
     }
  
     A. for(int i=0; i
  
     B. for (int i=0; i
  
     C. for(int i=0; i4; i++)
  
     D. for(int i=0; i
  
     Question 10:
     Consider the following code:
     Integer s = new Integer(9);
     Integer t = new Integer(9);
     Long u = new Long(9);
     Which test would return true?
    A. (s==u)
  
     B. (s==t)
  
     C. (s.equals(t))
  
     D. (s.equals(9))
  
     E. (s.equals(new Integer(9))
  
     Question 11:
     Which of the following is sUCcessfully create an instance of the Vector class and add an element?
  
     A. Vector v = new Vector(99);
     v[1]=99;
  
     B. Vector v = new Vector();
     v.addElement(99);
  
     C. Vector v = new Vector();
     v.add(99);
  
     D. Vector v = new Vector(100);
     v.addElement(“99”);
  
     Question 12:
     What will happen when you attempt to compile and run the following code?
  
     class Base{
     private void amethod(int iBase){
     System.out.println(“Base.amethod”);
     }
     }

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

   class Over extends Base{
     public static void main(String argv[]){
     Over o = new Over();
     int iBase=0;
     o.amethod(iBase);
     }
  
     public void amethod(int iOver){
     System.out.println(“Over.amethod”);
     }
     }
  
     A. Compile time error complaining that Base.amethod is private
  
     B. Runtime error complaining that Base.amethod is private
  
     C. Output of Base.amethod
  
     D. Output of Over.amethod
  
     Question 13:
     What will happen if you try to compile and run the following code?
  
     public class MyClass
     public static void main(String arguments[]){
     amethod(arguments);
     }
  
     public void amethod(String[] arguments)
     System.out.println(arguments);
     System.out.println(arguments[1]);
     }
     }
  
     A. Error can't make static reference to void amethod
  

来源:http://www.tulaoshi.com/n/20160219/1618577.html

延伸阅读
标签: 电脑入门
Linux系统中有时需要检测某个条件是否成立,那么就要用到test命令了,Linux下test的用法有很多,下面就随图老师小编一起来学习下Linux系统中如何使用test命令吧。 1.判断一个命令的结果使用test,其返回0,或一个整数。返回0表示true,返回整数表示错误码 2.获取上一个命令的返回结果使用$? 3.例如 我的服务器上面存在/home/www...
Java Learning Path(三)过程篇 每个人的学习方法是不同的,一个人的方法不见得适合另一个人,我只能是谈自己的学习方法。因为我学习Java是完全自学的,从来没有问过别人,所以学习的过程基本上完全是自己摸索出来的。我也不知道这种方法是否是比较好的方法,只能给大家提供一点参考了。 学习Java的第一步是安装好JDK...
和以前的版本相比,Java 2增加了不少令人难忘的特色。特别是Swing提供的用户界面部件(如表格和树形控制)以及2-D编程接口、JavaBean支持的增强,使得JDK 1.1看起来像一个古董。遗憾的是,没有一个浏览器能够完全支持Java 2,也就是说,那些令人激动的新功能在浏览器上无法运行,甚至还没有一个浏览器宣布在确定的日期内提供对Java 2的支持...
标签: Web开发
javascript 中的 RegExp 对象用于正则表达式相关的操作,这个对象提供了一个方法 test 来判定某个字符串是否满足某个 pattern. 返回值是 true/false. 今天我碰到了一个问题: script type="text/javascript" !-- var re = /^d+(?:.d)?$/ig;    alert(re.test('112.3')); alert(re.test('33')); /...
本文是另外一篇文章《如何才算把握Java(J2SE篇)》(后面简称标准篇)的姊妹篇,提出了标准,但是不告诉新手如何才能达到那个标准似乎说不过去。 首先需要说的是达到这个标准是比较困难的,没有三年的时间一般是不可能的,没有实际的项目的经验的熏陶也是不可能的,下文会说明为什么。然后给出两个宝典:一个就是TIJ(Thinking in Java...

经验教程

589

收藏

17
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部