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

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

下列字符串中非法字符串为( )。

A.’a string’

B.’It is a’string’.’

C.”a string”

D.”It is a’string”


参考答案

更多 “ 下列字符串中非法字符串为( )。A.’a string’B.’It is a’string’.’C.”a string”D.”It is a’string” ” 相关考题
考题 已知类 String 的原型为class string{public:string(const char *str=null);//普通构造函数string(const string other);//拷贝构造函数---string(void);string operate=(const string other);//赋值函数private:char * m-data;//用于保存字符串};请编写 string 的上述4 个函数

考题 编写类 String 的构造函数、析构函数和赋值函数已知类 String的原型为:class String{public:String(const char *str = NULL); // 普通构造函数String(const String other); // 拷贝构造函数~ String(void); // 析构函数String perate =(const String other); // 赋值函数private:char *m_data; // 用于保存字符串};请编写 String的上述 4 个函数。

考题 关于列表list和字符串string,下列说法不正确的是()A.list可以存放何意类型数据B.list是一个有序集合,没有固定大小C.用于统计string中字符串长度的函数是string.len()D.string是不可变数据类型,创建后其值不能改变

考题 字符串类中,被称为不可变字符串的是()。A.StringBulider类型B.StringBuffer类型C.String类型D.string类型

考题 在C++中不仅可以用string定义字符串变量,也可以用string定义字符串数组

考题 在.xml文件中使用字符串资源的方法是A.[<pachage>.]R.string.字符串名B.@[<package>:]string/字符串名C.字符串名D.“字符串名”

考题 以下叙述中正确的是()A.在语句char str[ ] = "string!"; 中,数组str的大小等于字符串的长度B.语句char str[10] = "string!"; 和 char str[10] = {"string!"}; 并不等价C.对于一维字符数组,不能使用字符串常量来赋初值D.对于字符串常量"string!",系统已自动在最后加人了'0'字符,表示串结尾

考题 22、字符串类中,被称为不可变字符串的是()。A.StringBulider类型B.StringBuffer类型C.String类型D.string类型

考题 4、字符串A=“string”和B=“demo”执行 Concat(T,A,B)后,T=()A.“stringdemo”B.“string”C.“demo”D.“demostring”