首页/ 题库 / [单选题]下列程序段: String s1=new的答案

下列程序段: String s1=new String("How"); String s2=new String("How"); System.out.println(!(s1==s2)); 的结果为

单选题
2022-01-10 03:20
A、false
B、true
C、1
查看答案

正确答案
B

试题解析

标签:
感兴趣题目
给出下列的程序,其叙述正确的是 ( ) public class Man { static int arr[]=new int[10]; public static void mam(String a[]) { System.out.println(arr[1]); { }
给出下列的程序,其叙述正确的是public class Man { static int arr[]= new int [10]; public static void main (String a []){ System.out.println(arr[1]); }}
给出下列的程序,其叙述正确的是( )。 public class Man{ static int arr [] new int[10]; public static void main (String a []){ System.out.println(arr [1]); } }
String str = new String(“abc”),“abc”在内存中是怎么分配的()。
String str = new String(“abc”),“abc”在内存中是怎么分配的()。
以下代码创建几个对象() String s1='bc';String s2='bc';
下面的代码实现一个简单的Applet: import java.applet.Applet; import java.awt.*; public class Sample extends Applet { private String text="Hello World"; public void init() { add(new Label(text)); } public Sample(String string) { text=string; } } 通过下面的HTML文件访问: <html> <title>Sample Applet</title> <body> <applet code="Sample.class"width=200 height=200></applet> </body> </html> 当编译和运行该小程序时会出现什么结果,请选择正确的答案。( )
阅读下面程序 class Test implements Runnable { public static void main(String[] args) { Test t=new Test(); t.start(): } public void run() {} } 下列关于上述程序的叙述正确的是
以下程序 #include<string.h> main() { char a1[80],a2[80],*s1=a1,*s2=a2; gets(s1);gets(s2) if(!strcmp(s1,s2))printf("*"); else printf("#"); printf("%d ",strlen(strcat(s1,s2))); } 如果从键盘上输入: book<回车> book<空格><回车> 则输出结果是( )
final class Tree {  private static String tree = "tree ";  String getTree() { return tree; }  }  class Elm extends Tree {  private static String tree = "elm "; public static void main(String [] args) {  new Elm().go(new Tree());  }  void go(Tree t) {  String s = t.getTree()+Elm.tree+tree+(new Elm().getTree());  System.out.println(s);  } }  结果为:() 
Which expressions will evaluate to true if preceded by the following code?()   String a = "hello";   String b = new String(a);   String c = a;   char[] d = { ’h’, ’e’, ’l’, ’l’, ’o’ };  
您正在测试一个组件,该组件对Meeting 类实例进行序列化处理,以使它们能够保存到文件系统。 Meeting具有如下定义: public class Meeting { private string title; public int roomNumber; public string[] invitees; public Interview( ){ } public Interview (string t){ title = t; } } 组件包含一个带有以下代码段的过程 Meeting myMeeting = new Meeting("Objectives"); myMeeting.roomNumber=20; string[] attendees = new string[2]{"Amy", "Ally"}; myMeeting.invitees = attendees; XmlSerializer xs = new XmlSerializer(typeof(Meeting)); StreamWriter writer = new StreamWriter(@"C:/Meeting.xml"); xs.Serialize(writer, myMeeting); writer.Close( );/ 您需要确定作为运行此过程的结果写入C:/Meeting.xml 文件的XML 块。 哪个XML 块代表将写入C:/Meeting.xml 文件的内容?()
相关题目
关于以下代码段的说法正确的是( ) 1.String s="abcde"; 2.StringBuffer s1=new StringBuffer("abcde"); 3.if(s.equals(s1)) 4. s1=null; 5.if(s1.equals(s)) 6. s=null;
下面这段代码会产生( )个String对象。 String s1 = "hello"; String s2 = s1.substring( 3); String s3 = s1.toString(); String s4 = new StringBuffer(s1).toString();
分析以下程序:1)public class x {2) public static void main(String [] args) {3) String ol = new String("ABV");4) String o2 = new String("ABV"); 5) if (o1.equals(o2)) {6) System.out.println("Equal"); 7) } } 9) } 该程序的执行结果是( )。
关于下面程序片段,( )的结论是正确的。String a = "Java"; String b = "Java"; String x = "Ja"; String y = "va";String c = x + y;
阅读下面程序 public class MyVal { public static void main(String[]args) { MyVal m=new MyVal(); m.amethod(); } public void amethod() { boolean b[]=new Boolean[5]; } } 程序编译或运行的结果是
阅读下面程序 public class My Val{ public static void main(String args[]){ My Val m=new My Val(); m. amethod(); } public void amethod(){ boolean b[]=new Boolean[5]; } } 程序编译或运行结果是
关于以下代码段的说法正确的是( D)1.String s="abcde";2.StringBuffer s1=new StringBuffer("abcde");3.if(sequals(s1))4. s1=null;5.if(s1equals(s))6. s=null;
阅读下面程序 public class My Val{ public static void main(String args[]){ My Val m=new My Val(); m. amethod(); } public void amethod(){ boolean b[]=new Boolean[5]; } } 程序编译或运行结果是
阅读下面程序 public class MyVal { public static void main(String[]args) { MyVal m=new MyVal(); m.amethod(); } public void amethod() { boolean b[]=new Boolean[5]; } } 程序编译或运行的结果是
下面的哪些程序段可能导致错误? ( ) Ⅰ: String s = "Gone with the wind"; String t = "good "; String k = s + t; Ⅱ: String s = "Gone with the wind"; String t; t = s[3] + "one"; Ⅲ: String s = "Gone with the wind"; String standard = s.toUpperCase(); Ⅳ: String s = "home directory"; String t = s-"directory":
关于下面语句的说法正确的是 String[][]s=new String[10][];
关于下面语句的说法正确的是( )。 String[][] s=new String[10][];
下列语句输出结果为( )。 public class test { public static void main (String args[]) { String s1=new String("How"); String s2=new String("How"); System.out.println(!(s1.equals(s2))); } }
下列程序段: String s1=new String("How"); String s2=new String("How"); System.out.println(!(s1==s2)); 的结果为
阅读下面程序 public class Operators And Expressions( void equals Methodl{ Stringsl一new String("how are you"); Strings2=new String("how are you"); System.out.println(s1= =s2): } public static void main(String args[]){ Operators And Expressions Oper And Exp=new Oper- ators And Expressions ; //用于复合类型数据的”= =”运算符 OperAndExp.equalsMethodl; } } 程序运行结果是( )。
阅读下面程序 public class OperatorsAndExpressions { void equalsMethodl() { String s1=new String("how are you"); String s2=new String("how are you"); System.out.println(s1==s2); } public static void main(String args[]) { OperatorsAndExpressions perAndExp=new OperatorsAndExpressions(); //用于复合类型数据的“==”运算符 OperAndExp.equalsMethodl(); } } 程序运行的结果是
阅读下面程序 public class OperatorsAndExpressions{ void equalsMethodl(){ String s1=new String("how are you"); String s2=new String("how are you"); System.out.println(s1==s2); } public static void main(String args[]){ OperatorsAndExpressionsOperAndExp=new OperatorsAndExpressions(); //用于复合类型数据的“==”运算符 OperAndExp.equalsMethod1(); } } 程序运行结果是
类Teacher: class Teacher{   String name; float salary;  Teacher(String name){    this.name = name; }  Teacher(String name,float salary){   this.name = name;    this.salary = salary; } }  执行语句Teacher t = new Teacher(“Tom”,2000.0f);后,字段salary的值是哪一项?()  
类Teacher:  class Teacher{   String name;   float salary;   Teacher(String name){   this.name = name;  }   Teacher(String name,float salary){   this.name = name;   this.salary = salary;  }  }   执行语句Teacher t = new Teacher(“Tom”,2000.0f);后,字段salary的值是哪一项?() 
执行String[] s=new String[10]后,哪个结论是正确的? ( )
广告位招租WX:84302438

免费的网站请分享给朋友吧