性能管理包括监视和______两大功能。
参考答案:调整
解析: 从概念上讲,性能管理包括监视和调整两大功能。前者主要指跟踪网络活动,后者是通过改变设置来改善网络的性能。
以下关于二维表的论述,错误的是( )。
A.表中的每一个元组都是不可再分的
B.表中行的次序不可以任意交换,否则会改变关系的意义
C.表中各列取自同一域,且性质相同
D.表中的第一行通常称为属性名
请完善程序(程序文件名:Java_2.java)并进行调试。请在下画线处填入正确内容,然后删除下画线。请勿删除注释行和其他已有的语句内容。 [题目要求] 完善程序,使程序运行结果如下图所示。
源程序: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Java_2 public static void main(String[] args) RadioButtonFrame frame=new RadioButtonFrame(); frame.setDefauhCloseOperation(JFrame.EXIT_ON_CLOSE); (1) ; class RadioButtonFrame extends JFrame public RadioButtonFrame() setTitle("Radio按钮实例"); setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT); Container contentPane=getContentPane(); label=new JLabel("热烈庆祝Java程序语言开考三周年"); label.setForeground(Color.yellow); contentPane.setBackground(Color.red); label.setFont(new Font("黑体",Font.PLAIN,DEFAULT_SIZE)); contentPane.add(label,BorderLayout.CENTER); buttonPanel=new JPanel(); group=new ButtonGroup(); addRadioButton("小",8); addRadioButton("中",12); addRadioButton("大",18); addRadioButton("特大",30); contentPane.add(buttonPanel,BorderLayout.SOUTH); public void addRadioButton(String name,final int size) boolean selected=size==DEFAULT_SIZE: JRadioButton button=new (2) (name,selected); group.add(button); buttonPanel.add(button); ActionListener listener=new Action Listener() public void actionPerformed( (3) evt) label.setFont(new Font("黑体",Font.PLAIN,size)); ; button.addActionListener( (4) ); public static final int DEFAULT_WIDTH=340; public static final int DEFAULT_HEIGHT=200: private JPanel buttonPanel; private ButtonGroup group; private JLabel label; private static final int DEFAULT_SIZE=12;