网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

已知有语句String S = "123ABC";,下列语句不合法的是()。

A.S.length();

B.S.charAt(3);

C.S.append(“DE”);

D.S = "XY";


参考答案和解析
D
更多 “已知有语句String S = "123ABC";,下列语句不合法的是()。A.S.length();B.S.charAt(3);C.S.append(“DE”);D.S = "XY";” 相关考题
考题 下列语句中错误的是A.String s[]={"how","are"};B.byte b=255;C.String s="one"+"two";D.int i=2+2000;

考题 已知String str=new String ("Luck");,则下列关于str的操作中不合法的是( )。A.String s=str. toUpperCase()B.int i=Str. length;C.char s=str. charAt(2);D.String s="Good" +str;

考题 String s=”Example String”; 下面哪些语句是正确的?() A.s>>>=3;B.int i=s.length();C.s[3]=”x”;D.String short_s=s.trim();E.String t=”root”+s;

考题 已知string s=“123456“,s1=“de“;,则下列选项中正确的语句包括()。 A.s.insert(s.begin()+1,s1)B.s.insert(s.begin()+1,'p')C.s.insert(s.begin()+1,"abc")D.s.insert(1,"abc")

考题 已知:chars[10],*p=s,则在下列语句中,错误的语句是()。 A.p=s+5;B.s=p+s;C.s[2]=p[4];D.*p=s[0];

考题 下列语句输出结果为( )。 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))); } }A.falseB.trueC.0D.1

考题 顺序执行下列两条语句,输出结果是______。String s="You are a pretty boy!";System.out.println(s.length( ));

考题 为了从HTML文件中获取参数,在Applet程序中应该编写的代码是 ( )A.在start()方法中加入语句String s=getParameter("buttonLabel");B.在init()方法中加入语句String s=Parameter("buttonLabel");C.在init()方法中加入语句String s=getParameter("BUTTONLABEL");D.在start()方法中加入语句String s=getParameter("BUTTONLABEL");

考题 关于下面语句的说法正确的是 String[]s=new String[10][];A.该语句不合法B.该语句定义了一个二维数组,它包括10行10列C.s是一个包含10个数组的数组D.s中的每一个元素都被设置成""

考题 下列语句能给数组赋值而不使用for循环的是A.myArray{[1]="One";[2]="Two";[3]="Three";}B.String s[5]=new String[]{"Zero", "One", "Two", "There", "Four"};C.String s[]=new String[]{"Zero", "One", "Two", "There", "Four"};D.String s[]=new String[]=|"Zero", "One", "Two", "There", "Four"};

考题 下列语句输出结果为( )。 public class test { public static void main(StringArgsl[]) { String s1=new String("How"); String s2=new String("How"); System.out.println(!(s1==s2)); } }A.falseB.trueC.1D.0

考题 下列语句能给数组赋值,而不使用for循环的是A.myArray{[1]="One";[2]="Two";[3]="Three";}B.String s[5]=new String[] {"Zero","One","Two","Three","Four"};C.String s[]=new String[] {"Zero","One","Two","Three","Four"};D.String s[]=new String[]= {"Zero","One","Two","Three","Four"};

考题 执行下列两条语句后,结果s2的值为()    string s=“abcdefgh”;      string s2=s.Substring(2,3);A、 “bc”B、 “cd”C、 “bcd”D、 “cde”

考题 已知字符‘b’的ASCII码为98,执行下列语句printf("%d,%c",’b’,’b’+1);后输出为()A、98,bB、语句不合法C、98,99D、98,c

考题 floatf;Strings;现需要把float转化为String,正确的语句是()A、s=String.valueOf(f);B、f=Float.parseFloat(s);C、s=f;D、s=(String)f;

考题 语句()能正确完成赋字符串的功能。A、chars[4];s[0]=“string”B、char*s;get(s)C、char*s[]=“string”D、char*s;strcpy(s,“string”)

考题 下面哪个语句是正确的()A、short s=256;B、String s=‘Helloworld’;C、int x=012;D、char c=“a”;

考题 设有定义:String s=“World”;,下列语句错误的是()。A、int m=s.indexOf(‘r’);B、char c=s.charAt(0);C、int n=s.length();D、String str=s.append(‘2’);

考题 设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。

考题 执行语句“stringstr("abc");”时,系统会自动调用string类的构造函数()。A、string()B、string(constchar*s)C、string(conststringstr)D、string(size_typen,charc)

考题 有声明语句:delegate void TimeDelegate(string s),则以下语句可以和委托TimeDelegate绑定的方法是()A、 void f(){  }B、 string f(){  }C、 void f(string a){  }D、 string f(string a){  }

考题 有语句String s=”hello world”; ,以下操作哪个是不合法的()A、int i=s.length();B、s=3;C、String ts=s.trim();D、String t=s+”!”

考题 单选题有语句String s=”hello world”; ,以下操作哪个是不合法的()A int i=s.length();B s=3;C String ts=s.trim();D String t=s+”!”

考题 单选题有声明语句:delegate void TimeDelegate(string s),则以下语句可以和委托TimeDelegate绑定的方法是()A  void f(){  }B  string f(){  }C  void f(string a){  }D  string f(string a){  }

考题 单选题有以下说明语句:char *s = "\"Name\\Address";指针s所指字符串的长度是( )。A 17B 15C 14D 说明语句不合法

考题 判断题设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。A 对B 错

考题 单选题执行下列两条语句后,结果s2的值为()    string s=“abcdefgh”;      string s2=s.Substring(2,3);A  “bc”B  “cd”C  “bcd”D  “cde”

考题 单选题有语句Strings=”helloworld”;,以下操作哪个是不合法的?()A inti=s.length()B s=3C Stringts=s.trim()D Stringt=s+”!”