下列语句运行结果为True的是
A: ”H” in “hello”
B: “h” not in “hello”
C: ”h” in “hello”
D: 以上都正确
A: ”H” in “hello”
B: “h” not in “hello”
C: ”h” in “hello”
D: 以上都正确
举一反三
- 以下选项中,( )是正确的字符串。 A: 'hello' B: "hello " C: hello D: 'h'
- 给定如下Java代码,编译运行时,以下()语句的值是true。 Strings=”hello”; Stringt=”hello”; Stringe=newString(”hello”); charc[]={‘h’,e’,’l’,’l’,o’};
- 对于一个类Hello,在该类的内部声明构造函数 或者 析构函数时,原型可以写为 A: Hello(int a = 0); B: ~Hello(); C: Hello(Hello& h, int a = 0); D: int Hello(); E: void Hello(Hello& h); F: int ~Hello(); G: void ~Hello() H: ~Hello(int x = 0);
- 对于一个类Hello,在该类的内部声明构造函数 或者 析构函数时,原型可以写为 A: Hello(int a = 0); B: ~Hello(); C: Hello(Hello& h, int a = 0); D: int Hello(); E: void Hello(Hello& h); F: int ~Hello(); G: void ~Hello() H: ~Hello(int x = 0);
- 下面正确的数组初始化语句是() A: charstr[]="hello"; B: charstr[100]="hello"; C: charstr[]={’h’,’e’,’l’,’l’,’o’}; D: charstr[]={’hello’};