患者,女,45岁,因左侧面颊部皮肤及左侧舌部黏膜发红、起疱3天,伴剧痛来诊。查体:体温38.5℃,左侧面部皮肤及左侧舌背、颊黏膜可见粟粒大小的密集成片的透明水疱,周围皮肤黏膜可见充血性红斑。化验:红细胞7.8×10g/L,中性62%,淋巴34%。拟诊断为带状疱疹。本病例可发生的最严重的并发症为()
A. 肺炎
B. 脑炎
C. 结膜炎
D. 角膜炎
E. 面瘫
查看答案
患者,男,38岁。长期在煤矿下工作,手足冰凉,畏寒怕冷,睾丸偏坠胀痛,饮食怕冷,腹痛遇冷加重,阳痿,近日不慎被开水烫伤,舌淡,脉沉细。针对患者“开水烫伤”,首选的外用药物是()
A. 茵陈
B. 金钱草
C. 牡丹皮
D. 知母
E. 虎杖
10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result?()
A. The code runs with no output.
B. An exception is thrown at runtime.
Compilation fails because of an error in line 20.
D. Compilation fails because of an error in line 21.
E. Compilation fails because of an error in line 23.
F. Compilation fails because of an error in line 25.