-->
当前位置:首页 > 题库

题库 第6436页

  • 最新
  • 浏览
  • 评论

在面向对象的程序设计中使用多态,能够增强程序的可扩充性 ,即程序需要修改或增加功能的时候,需要改动和增加代码较少。

Luz5年前 (2021-05-10)1162
在面向对象的程序设计中使用多态,能够增强程序的可扩充性 ,即程序需要修改或增加功能的时候,需要改动和增加代码较少。 ~@[](2)答案:TRUE…

通过基类引用调用基类和派生类中的同名虚函数时,若该引用引用的是一个派生类的对象,那么被调用的是派生类的虚函数。

Luz5年前 (2021-05-10)1576
通过基类引用调用基类和派生类中的同名虚函数时,若该引用引用的是一个派生类的对象,那么被调用的是派生类的虚函数。 ~@[](2)答案:TRUE…

switch语句中break语句是必须的。

Luz5年前 (2021-05-10)1177
switch语句中break语句是必须的。 ~@[](1)答案:FALSE…

switch语句中多个case标号可以共用一组语句。

Luz5年前 (2021-05-10)1800
switch语句中多个case标号可以共用一组语句。 ~@[](1)答案:TRUE…

通过基类指针调用基类和派生类中的同名虚函数时,若该指针指向一个基类的对象,那么被调用的是基类的虚函数。

Luz5年前 (2021-05-10)1738
通过基类指针调用基类和派生类中的同名虚函数时,若该指针指向一个基类的对象,那么被调用的是基类的虚函数。 ~@[](2)答案:TRUE…

通过基类引用调用基类和派生类中的同名虚函数时,若该引用引用的是一个基类的对象,那么被调用的是基类的虚函数。

Luz5年前 (2021-05-10)1653
通过基类引用调用基类和派生类中的同名虚函数时,若该引用引用的是一个基类的对象,那么被调用的是基类的虚函数。 ~@[](2)答案:TRUE…

If 7 elements have been stored in a hash table of size 13 at po

Luz5年前 (2021-05-10)1481
If 7 elements have been stored in a hash table of size 13 at positions { 0, 1, 3, 4, 9, 10, 12 }, and the hash function…

Given a hash table with size 13. If only the positions with odd

Luz5年前 (2021-05-10)1569
Given a hash table with size 13. If only the positions with odd (奇数) indices are occupied (the index starts from 0), th…

If quadratic probing is used to resolve collisions, then a new i

Luz5年前 (2021-05-10)1209
If quadratic probing is used to resolve collisions, then a new insertion must be successful if the size of the hash tabl…

在switch语句中,不一定使用break语句。

Luz5年前 (2021-05-10)1018
在switch语句中,不一定使用break语句。 ~@[](1)答案:TRUE…