假设在Strings。xml文件中定义了一个名为hello的字符串,那么在Java文件中用( )引用该字符串。 A: R.string.hello B: @string /hello C: hello D: string.hello
假设在Strings。xml文件中定义了一个名为hello的字符串,那么在Java文件中用( )引用该字符串。 A: R.string.hello B: @string /hello C: hello D: string.hello
下面的哪些程序片断可能导致错误?( ) A: String s=”Hello”; String t=,,World"; String k=s+t; B: String s=,,Hello";String t;t=s[3]+"one"; C: String s="Hello,,;String standard = s.tollpperCase(); D: String s="Hello World”;String t=s-”World”;
下面的哪些程序片断可能导致错误?( ) A: String s=”Hello”; String t=,,World"; String k=s+t; B: String s=,,Hello";String t;t=s[3]+"one"; C: String s="Hello,,;String standard = s.tollpperCase(); D: String s="Hello World”;String t=s-”World”;
下列定义字符串类string对象的语句中,错误的是( )。 A: string str; B: string str( “Hello, world” ); C: string str = “Hello, world”; D: string str = ‘Hello, world’;
下列定义字符串类string对象的语句中,错误的是( )。 A: string str; B: string str( “Hello, world” ); C: string str = “Hello, world”; D: string str = ‘Hello, world’;
假设有两个String类型对象:String s1=new String(“Hello”);String s2=new String(“Hello”);则表达式" s1== s2"的值为true。
假设有两个String类型对象:String s1=new String(“Hello”);String s2=new String(“Hello”);则表达式" s1== s2"的值为true。
String s1,s2; s1=new String("Hello!"); s2=new String("Hello!"); 则s1==s2的值为true
String s1,s2; s1=new String("Hello!"); s2=new String("Hello!"); 则s1==s2的值为true
中国大学MOOC: 以下代码片断运行结果为:String str1=new String(Hello);String str2=new String(Hello);System.out.println(str1.equals(str2));
中国大学MOOC: 以下代码片断运行结果为:String str1=new String(Hello);String str2=new String(Hello);System.out.println(str1.equals(str2));
String str = new String("hello"); 创建了几个String Object?
String str = new String("hello"); 创建了几个String Object?
下列代码片段执行结果是:String s=new String(”abc”); String s1=new String(s); if(s==s1){ System.out.println(”Hello”); } if(s.equals(s1)){ System.out.println(”World”); } A: Hello World B: Hello C: World D: Null
下列代码片段执行结果是:String s=new String(”abc”); String s1=new String(s); if(s==s1){ System.out.println(”Hello”); } if(s.equals(s1)){ System.out.println(”World”); } A: Hello World B: Hello C: World D: Null
String s1="Hello";String s2="World";System.out.println(s2+s1);运行的结果是? A: HelloWorld B: Hello World C: WorldHello D: World Hello
String s1="Hello";String s2="World";System.out.println(s2+s1);运行的结果是? A: HelloWorld B: Hello World C: WorldHello D: World Hello
以下代码共创建了几个对象?String s1=new String("hello");String s2=new String("hello");String s3=s1;String s4=s2; A: 2 B: 4 C: 1 D: 3
以下代码共创建了几个对象?String s1=new String("hello");String s2=new String("hello");String s3=s1;String s4=s2; A: 2 B: 4 C: 1 D: 3