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

题目内容 (请给出正确答案)
字符串的append函数可以添加多种内容,以下append函数的使用中,错误的是()StringBufferstrb1=newStringBuffer();IntegerintObj=newInteger(33);

A.strb1.append(3.14159);

B.strb1.append(’数’);

C.strb1.append(true);

D.strb1.append(intObj);


参考答案

更多 “ 字符串的append函数可以添加多种内容,以下append函数的使用中,错误的是()StringBufferstrb1=newStringBuffer();IntegerintObj=newInteger(33); A.strb1.append(3.14159);B.strb1.append(’数’);C.strb1.append(true);D.strb1.append(intObj); ” 相关考题
考题 以下语句的含义是()char[]arrcrlf={13,10};Stringcrlf=newString(arrcrlf);stringBufferdest=newStringBuffer(西行漫记);dest.append(crlf); A.字符串西行漫记不变B.字符串西行漫记的最后一个字被删除C.语句存在语法错误D.在字符串西行漫记的后面加回车换行符

考题 Giventhismethodinaclass:publicStringtoString(){StringBufferbuffer=newStringBuffer();buffer.append(??);buffer.append(this.name);buffer.append(??);returnbuffer.toString();}Whichistrue?() A.ThiscodeisNOTthread-safe.B.TheprogrammercanreplaceStringBufferwithStringBuilderwithnootherchanges.C.ThiscodewillperformwellandconvertingthecodetouseStringBuilderwillnotenhancetheperformance.D.Thiscodewillperformpoorly.Forbetterperformance,thecodeshouldberewritten:return““+this.name+“”;

考题 publicclassSyncTest{publicstaticvoidmain(Stringargs){finalStringBuffers1=newStringBuffer();finalStringBuffers2=newStringBuffer();newThread(){publicvoidrun(){synchronized(s1){s2.append(A”);synchronized(s2){s2.append(B”);System.out.print(s1);System.out.print(s2);}}}}.start();newThread(){publicvoidrun(){synchronized(s2){s2.append(C”);synchronized(s1){s1.append(D”);System.out.print(s2);System.out.print(s1);}}}}.start();}}Whichtwostatementsaretrue?()

考题 30、关于以下代码,描述错误的是()。 lst = ["car","truck"] def fun(a): lst =[] lst.append(a) return fun("bus") print(lst)A.代码函数定义中,ls.append(a)中的ls是局部变量B.执行代码输出结果为['car', 'truck']C.lst.append(a) 代码中的ls是列表类型D.执行代码输出结果为['car', 'truck', 'bus']

考题 Python字典的内置函数中没有append() 操作,可以用update()来更新字典内容。

考题 35、Python字典的内置函数中没有append() 操作,可以用update()来更新字典内容。

考题 【多选题】关于字符串输入输出,以下说法正确的是()A.在一个程序中,可以使用gets()函数输入字符串,使用puts()函数输出字符串B.在一个程序中,可以使用gets()函数输入字符串,使用printf()函数输出字符串C.在一个程序中,可以使用scanf()函数输入字符串,使用puts()函数输出字符串D.在一个程序中,可以使用scanf()函数输入字符串,使用printf()函数输出字符串

考题 通过()函数将元组或字符串转化成列表A.list()B.append()C.copy()D.insert()

考题 使用append()方法可以向列表框添加选项。