a)Can a struct inherit from another struct?
(结构体能继承结构体吗)
b)Can a struct inherit from another class?
(结构体能继承类吗)
c)Can a struct be the base of another class?
(结构体可以作为一个类的基类吗)
d)Can a struct implement an interface?
(结构体可以实现一个接口吗)
e)What’s the difference between struct and class?
(结构体与类有什么区别)
第1题:
在C++语言中,struct与class的区别是?
A.class允许继承,而struct不允许继承。#B.class有构造函数,而struct没有构造函数。#C.对于成员访问权限以及继承方式,class中默认的是private的,而struct中则是public的。class还可以用于表示模板类型,struct则不行。#D.class有析构函数,而struct没有析构函数。第2题:
结构体类型的名字是由一个关键字struct和结构体名组合而成的。
第3题:
3. 结构体指针变量的一般定义形式如下: struct 结构体类型名 *结构体指针变量名;
第4题:
struct是定义结构体的关键字。
第5题:
4.结构体指针变量的一般定义形式如下: struct 结构体类型名 *结构体指针变量名;
第6题:
14、可用struct 结构体名来定义结构体类型。