【简答题】相同类型对象之间可以直接赋值,如: CMyPoint c1(5,7),c2; c2=c1; 但不是所有的同类型对象都可以这么操作。试问,包含下列类成员变量中( )、( ),则不可以直接赋值。 可选项: char * a; int b[10]; string c; int d[];
【判断题】String 对象一旦实例化之后,就不能改变其值。而 StringBuffer 对象可以实现对字符串中某个字符的插入、修改、删除及替换操作。
【单选题】活动钳身通孔[φ8.5 ±0.2]( )。
【简答题】The following is a fairly formal reply to an invitation. Suppose the writer and the recipient were intimate friends, the words of the reply would be quite different even though the purpose and the con...
【单选题】Directions: rewrite the sentences replacing the long expressions with single words selected from the accompanying list. The name of the sender could not be found in any poart of the letter. The letter...
【多选题】下列说法错误的是: ( )( 多选 ) A. 比较字符串大小,实际上就是依次比较其所包含的字符的数值大小 B. length() 得到的是字符串 char 的长度,而不是字节数。 C. 采用构造函数的方法定义 String ,不需要分配堆内存空间的。 D . String 类可以改变的,一旦创建了 String 对象,其值可以修改
A.
比较 字符串大小,实际上就是依次比较其所包含的字符的数值大小
B.
length() 得到的是字符串 char 的长度,而不是字节数
C.
采用 构造函数 的方法定义 String , 不 需要 分配堆内存空间的
D.
String 类可以改变 的 ,一旦 创建了 String 对象 ,其值可以修改
【判断题】String对象是不可改变的,修改字符串的值实际上是在重新创建实例并赋值。