以下关于继承的说法不正确的是()
A. 子类将不会继承基类中的private成员。
B. 子类将继承基类中的public成员。
C. 子类将继承基类中的internal成员。
D. 子类将继承基类中的protected成员。
以下关于继承的说法不正确的是()
A. 在子类中可以访问基类的public成员。
B. 在子类中可以访问基类的protected成员。
C. 在子类中可以访问基类的private成员。
D. 在子类中可以访问基类的internal成员。
阅读以下程序public class Shape{private string comments;protected string name;public string Name{ get{ return name;} set{name = value;}}public void Draw() {}}public class Rectangle:Shape{protected int width;protected int height;public int Width{get{return width;} set{width=value;}}public int Height{get{return height;} set{height=value;}}public int ComputeArea(){}}以上Shape类中在Rectangle类中不可见的是()
A. comments
B. name
C. Name
Draw()
阅读以下程序public class Shape{private string comments;protected string name;public string Name{ get{ return name;} set{name = value;}}public Shape(){}public Shape(string name){}public void Draw() {}}public class Rectangle:Shape{protected int width;protected int height;public int Width{get{return width;} set{width=value;}}public int Height{get{return height;} set{height=value;}}public Rectangle(){}public Rectangle(int cx,int cy){}public int ComputeArea(){}}以上Shape类中的成员没有被Rectangle类继承的是()
A. comments
B. name
C. Name
D. 构造函数