私密性
参考答案:
指个人或群体控制自身与他人在什么时候,以什么方式,在什么程度上与他人交换信息需要
鉴别急性牙髓炎的患牙为上颌或下颌可用()。
A.电诊法
B.X线片
C.麻醉法
D.染色法
E.嗅诊
阅读下程序,写出程序功能。 import java. awt.*; import java. applet.*; import javax. swing.*; import java. awt. event. * ; public class C3402 extends Applet static JFrame myWin;static SetBG setbg=new SetBG();static JButton button;public void init() myWin=new JFrame("C3402"); myWin. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); myWin. setBounds(100,200,300,400); myWin. setLayout(new FlowLayout(); Container con=myWin. getContentPane(); con. setBackground(Color. red); button=new JButton("OK"); button. addActionListener(setbg); myWin.add(button); myWin.setVisible(true); class SetBG implements ActionListener public void actionPerformed(ActionEvent e) Container con=C3402. myWin. getContentPane(); if(con. getBackground()==Color. red)con. setBackground(Color. green); elsecon.setBackground(Color.red);