首 页
大学试题
CMS专题
工学
经济学
专升本
法学
教育学
历史学
更多分类
搜索
题库考试答案搜索网 > 题目详情
当前位置:
首页
>
下面这段代码会产生( )个String对象。 String s1 = "hello"; String s2 = s1.substring( 3); String s3 = s1.toString(); String s4 = new StringBuffer(s1).toString();
>
题目详情
问题题干
答案解析
相关问题
热门问题
最新问题
问题详情
下面这段代码会产生( )个String对象。 String s1 = "hello"; String s2 = s1.substring( 3); String s3 = s1.toString(); String s4 = new StringBuffer(s1).toString();
A、1
B、2
C、3
D、4
时间:2021-07-17 17:50
关键词:
答案解析
C
相关问题
关于以下代码段的说法正确的是( ) 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;
有语句String s=”hello world”; ,以下操作( )是不合法的?
最新问题
表达式"hello" instance of String返回的值是哪项?
有如下代码: String str, str1; str="This is a string"; str1=str; str1="String"; str=str1; str1="String1"; 此时str的值会怎样:( )
设typedef char STRING[255];STRING*s;,则s是( )
若有定义typedef char STRING[255]; STRING s; 则s是
关于以下代码段的说法正确的是( 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;
下面这段代码会产生( )个String对象。
给定如下所示的JAVA代码,则运行时,会产生()类型的异常。 String s=null; s.concat("abc");
设有如下的用户定义类型: Type Student number As String name As string age As Integer End Type 则以下正确引用该类型成员的代码是______。
设有如下的用户定义类型: Type Student number As String name As string age As Integer End Type 则以下正确引用该类型成员的代码是______。
设有如下的记录类型: Type Student number As String name As String age As Integer End Type 则正确引用该记录类型变量的代码是______。
别人在看