单项选择题

设有基类定义:
class Cbase
private:int a;
protected. int b;
public:int c;

派生类采用何种继承方式可以使成员变量b成为自己的私有成员( )。

A.私有继承
B.保护继承
C.公有继承
D.私有、保护、公有均可