需做的辅助检查是
A.胸腔穿刺
B.心包穿刺
C.胸部X线检查
D.心电图检查
E.主动脉造影
参考答案:B
What color her eyes ? are blue .[ ]
A. is, they
B. do, they
C. are, They
有如下程序: #include using namespace std; class Instrument{ public: virtual void Display()=0; }; class Piano:public Instrument{ public: void Display(){/*函数体程序略*/} }; int, main(){ Instrument s; Instrument*p=0; //...; return 0; } 下列叙述中正确的是
A.语句“Insturment *p=0;”编译时出错
B.语句“Instruments;”编译时出错
C.类Piano中的Display函数不是虚函数
D.类Instrumen七是一个虚基类