• 2021-04-14
    已知如下代码:String f = null;下面哪些表达式将产生异常?
  • f == null && f.length()>10 --- f != null || f.length()>10

    内容

    • 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