下面代码在运行时会产生什么异常?( ) Object obj = new Object();String str = (String)obj;
A: ClassNotFoundException
B: ClassCastException
C: ObjectClassException
D: NullPointerException
A: ClassNotFoundException
B: ClassCastException
C: ObjectClassException
D: NullPointerException
B
举一反三
- 执行()程序段之后将出现错误提示。 A: int[]arr={11,21,31}; for(intx:arr) System.out.println(x); B: Object[]obj=newString[]{"111","2222","3333"}; String[]str=(String[])obj; C: Object[]obj={"111","2222","3333"}; String[]str=(String[])obj; D: Object[]arr=newFloat[]{11.1F,22.1F,33.3F,44.44F,55.55F}; for(Floatx:(Float[])arr) System.out.println(x);
- 通过()方法可以将内容保存在session中。 A: session.setValues(String name,Object obj) B: session.setAttribute(String namej) C: session.setAttribute(String name,Object obj) D: session.getValues(String name)
- String str = new String("hello"); 创建了几个String Object?
- 下面选项中,用于获取Cookie名称的方法是( )。 A: Object getName() B: String getName() C: String getName(String str) D: Object getName(String str)
- 【单选题】下面选项中,哪个方法可以用于获取Cookie的值() A: Object getValue() B: String getValue () C: String getValue (String str) D: Object getValue (String str)
内容
- 0
以下装箱、拆箱语句中,错误的有() A: object obj=100; int m=(int)obj; B: object obj=100; int m=obj; C: object obj=(int)100; int m=(int)obj; D: object obj=(object)100; int m=(int)obj;
- 1
下面选项中语法正确的语句是( )。 A: RuntimeException e = new RuntimeException(); B: 都正确 C: Exception e = new Exception(); D: Object obj = new NullPointerException();
- 2
【单选题】下面代码片段输出结果是哪一项 var str; alert(typeof str); A. string B. undefined; C. object; D. String;
- 3
application对象的常用方法public void setAttribute(String key, Object obj)的意义?
- 4
下面哪个方法不是Object类中定义的方法?( ) A: public boolean equals(Object obj) B: public int compareTo() C: public String toString() D: public int hashCode()