单选题String、StringBuffer都是( )类,都不能被继承。AstaticBabstractCfinalDprivate
单选题
String、StringBuffer都是( )类,都不能被继承。
A
static
B
abstract
C
final
D
private
参考解析
解析:
在Java中,字符串是作为对象出现的,由java.lang.String和java.lang.StringBuffer定义,分别用来处理长度不变可变字符串,这两类都被定义为final,final最终类指明该类不能有子类。
在Java中,字符串是作为对象出现的,由java.lang.String和java.lang.StringBuffer定义,分别用来处理长度不变可变字符串,这两类都被定义为final,final最终类指明该类不能有子类。
相关考题:
为使下列代码正常运行,应该在下划线处填入的选项是abstract class Person{public Person(String n)!name=n;}public____String getDescription();public String getName(){return name;}private String name;}A.staticB.privateC.abstractD.final
阅读下列代码段 abstract class Person{ public Person(String n){ name=n; } public______String getDescription(); public String getName(){ } private String name; } 在下画线处应填入的修饰符是A.staticB.abstractC.protectedD.final
阅读下面代码 abstract class Person { public Person(String n) { name=n; } public______String getDescription(); public String getName() { return name; } private String name; } 在下画线处应填入的修饰符是A.staticB.abstractC.protectedD.final
为使下列代码正常运行,应该在下画线处填入的选项是( )。 abstract class person{ public Person(String n){ name=n: } Public String getDescription; public String getName{ return name; } private string name; }A.staticB.privateC.abstractD.final
String、StingBuffer都是( )类,都不能被继承。A.staticB.abstractC.finalSX String、StingBuffer都是( )类,都不能被继承。A.staticB.abstractC.finalD.private
String与StringBuffer的区别()。A、String是不可变的对象,StringBuffer是可以再编辑的B、String是常量,StringBuffer是变量C、String是可变的对象,StringBuffer是不可以再编辑的D、以上说法都不正确
下列关于String类和stringBuffer类说法正确的有()。A、String类是不可变类,一个String对象所包含的字符串内容永远不会被改变B、如果对字符串中的内容经常进行操作,特别是内容要修改时,应使用StringBufferC、StringBuffer类是可变类,一个StringBuffer对象所包含的字符串内容可以被添加或修改D、字符串缓冲区支持可变的字符串
关于String和StringBuffer,下面那些是正确的:()A、常量字符串使用String,非常量字符串使用StringBuffer。B、使用StringBuffer的时候设置初始容量。C、尽量使用StringTokenizer代替indexOf()和substring()。D、尽量不要使用StringBuffer,StringTokenizer类。
Which methods from the String and StringBuffer classes modify the object on which they are called?() A、The charAt() method of the String class.B、The toUpperCase() method of the String class.C、The replace() method of the String class.D、The reverse() method of the StringBuffer class.E、The length() method of the StringBuffer class.
多选题关于String和StringBuffer,下面那些是正确的:()A常量字符串使用String,非常量字符串使用StringBuffer。B使用StringBuffer的时候设置初始容量。C尽量使用StringTokenizer代替indexOf()和substring()。D尽量不要使用StringBuffer,StringTokenizer类。
单选题Which methods from the String and StringBuffer classes modify the object on which they are called?()AThe charAt() method of the String class.BThe toUpperCase() method of the String class.CThe replace() method of the String class.DThe reverse() method of the StringBuffer class.EThe length() method of the StringBuffer class.
单选题Java语言中常量的定义是哪项?()A public staticB public static finalC finalD public static abstract