下面代码在运行时会产生什么异常?( ) Object obj = new Object();String str = (String)obj;
A: ClassNotFoundException
B: ClassCastException
C: ObjectClassException
D: NullPointerException
A: ClassNotFoundException
B: ClassCastException
C: ObjectClassException
D: NullPointerException
举一反三
- 执行()程序段之后将出现错误提示。 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)