利水渗湿、重镇安神、收敛固涩、潜阳熄风是()的作用。
A.升浮
B.沉降
C.甜味
D.苦味
参考答案:B
水蒸汽的凝结有什么特点?
下面是生成一个依赖窗口的对话框,属性为modal,请把所缺的代码补齐。 import java.awt.*; public class DialogDemo extends Frame DialogDemo ( ) SetTitle ("Demo"); Panel p=new Panel(); p.add(new label ("one")); p.add(new Checkbox("two")); add ("North",p); add ("Center", new TextArea ("three", 3,10)); Dialog d=new Dialog(this,"a cat", 【12】 ); d.add("North",new Label ("Modal dialog"); d.add("Center",new TextArea("hello"); d.pack (); d.show(); public static void main(String args[] ) DialogDemo f=new DialogDemo(); f.pack(); f.show ();