7、020 继承自string的MyString 通过码
第1题:
有如下的程序: #include<cstring.h) #ingclude<iostream.h) using namespace std; Class MyString {public: MyString(const char*s); ~MyString(){delete[]data;} protected: unsigned len; char*data;}; MyString::MyString(const char*S) {l
A.构造函数的实参不允许是本类的对象
B.没有定义实现深层复制(深拷贝)的复制构造函数
C.构造对象a时实参与形参类型不符
D.系统不能生成默认的复制构造函数
第2题:
Const mystring=“hello”的含义是( )。
A.在VBScript中,把变量mystring赋值为hello
B.在VBScript中,把常量mystring的值定为hello
C.在Java中,把变量mystring赋值为hello
D.在Java中,把变量mystring赋值为hello
第3题:
有如下的程序: #include <cstring.h> #include <iostream.h> using namespace std; class MyString { public: MyString(const char*s); ~MyString () {delete [] data;} protected: unsigned len; char*data; }; MyString::MyString(const char *s) { len=strlen (s); data=new char[len+1]; strcpy (data,s); } int main () { MyString a("C++ Programing"); MyString b(a); return 0; } 在运行上面的程序时出错,出错的原因是
A.构造函数的实参不允许是本类的对象
B.没有定义实现深层复制(深拷贝)的复制构造函数
C.构造对象a时实参与形参类型不符
D.系统不能生成默认的复制构造函数
第4题:
7 .string = null 和string = “”的区别
第5题:
String、StingBuffer都是( )类,都不能被继承。
A.static
B.abstract
C.final
D.private
第6题:
在scala中的所有基础类型中只有String是继承自AnyRef
第7题:
中国的国家码是()。
第8题:
JSP可以继承String类。
第9题:
对
错
第10题:
char*myString=“Hello-World!”;
char myString=“Hello-World!”;
char myString[11]=“Hello-World!”;
char myString[12]=“Hello-World!”;
第11题:
第12题:
对
错
第13题:
A.代码编译成功
B.代码不能编译,因为没有定义一个main()方法
C.代码不能编译,因为String是abstract类型的
D.代码不能编译,因为String是final类型的
第14题:
有如下程序: #include<cstring> #include<iostream> using namespace std; class MyString{ public: MyString(const char * s); ~MyString( ){delete[ ]data;} protected: unsigned len; char * data; }; MyString::MyString(const char * s){ len=strlen(s); data=new char[1en+1]; strcpy(data,s); } int main( ){ MyString a("C++Progreanfing"); MyString b(A) ; return 0; } 在运行上面的程序时出错,错误的原因是
A.构造函数的实参不允许是本类的对象
B.没有定义实现深层复制(深复制)的复制构造函数
C.构造对象a时实参与形参类型不符
D.系统不能生成缺失的复制构造函数
第15题:
4,是否可以继承String类?
第16题:
下列语句中正确的是
A.char*myString="Hello-World!";
B.char myString="Hello-World!";
C.char myString[11]=”Hello-World!”;
D.char nlyString[12]="Hello-World!";
第17题:
下面这段代码中,变量myInteger的结果是()。 Dim myString As String="ABCDE" Dim myInteger As Integer myInteger=myString.IndexOf("D")
第18题:
下面这段代码中,变量myChar的结果是()。 Dim myString As String = "ABCDE" Dim myChar As Char myChar = myString.Chars(3)
第19题:
String是可以被继承的。
第20题:
中国的国家码是86,移动国家码是()。
第21题:
0
1
2
3
4
第22题:
133
86
020
460
第23题:
B
C
D
E
第24题:
133
86
460
020