The code public class B : A { }

问题描述:

The code public class B : A { }
a) Defines a class that inherits all the methods of A
b) Defines a class that inherits the public and protected methods of A only
c) Errors
d) a and b

b