已知如下代码:String f = null;下面哪些表达式将产生异常?
f == null && f.length()>10 --- f != null || f.length()>10
举一反三
- 设有如下代码段 1 String s = null 2 if ( s != null
- 【单选题】给定如下代码所示的Java代码。则运行时,会产生()类型的异常。String s=null;s.concat(“abc”); A. ArithmeticException B. NullPointerException C. IOException D. ClassNotFoundException
- 设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?
- 下面哪些是Java的关键字()。 A: default B: NULL C: String D: throws E: long F: true
- 下面代码在运行时会产生什么异常?( ) Object obj = new Object();String str = (String)obj; A: ClassNotFoundException B: ClassCastException C: ObjectClassException D: NullPointerException
内容
- 0
在JavaScript中,运行下面代码后的返回值是( )var a=null;(typeof(a)); A: object B: null C: string D: undefined
- 1
下面代码的运行结果为:( )public class Qlac{static String arr[] = new String[5];public static void main(String args[ ]) {System.out.println(arr[1]);}} A: 编译正确,运行时将产生错误 B: 输出0 C: 输出null D: 编译时将产生错误
- 2
17d624a824c6a2e.jpg下面代码的运行结果是 ( ) A: 由于String s没有初始化,代码不能编译通过。 B: 代码编程成功,并输出”s=” C: 代码编译成功,并输出”s=null” D: 代码编译成功,但捕获到NullPointException异常
- 3
设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.
- 4
设有如下代码段 1Strings=null; 2if(s!=null