洗胃的禁忌证有()。
A.硫酸中毒
B.生物碱中毒
C.幽门梗阻
D.近期上消化道出血
E.肝硬化伴食管静脉曲张
参考答案:A, D, E
若有以下程序: #include <iostream> using namespaces std; class A public: A() A(int i) x1=i; void dispa() cout<<’x1="<<x1<<","; private: int x1; ; class B: public A public: B() B(int i):A(i+10) x2=i; void dispb() dispa();cout<<"x2="<<x2<<end1; private: int x2; ; int main() B b(2); b.dispb(): return 0; 程序运行后的输出结果是
A.x1=10,x2=2
B.x1=12,x2=10
C.x1=12,x2=2
D.x1:2,x2=2