问题 单项选择题 有如下程序: #include using namespace std; class C1{ public: ~C1(){ cout<<1; } }; Class C2: public c1{ public: ~c2(){ cout<<2; } }; int main(){ C2 cb2; C1 *cb1; return 0; } 运行时的输出结果是A.121B.21C.211D.12 答案 参考答案:B