The teachers are talking ____ the new book. [ ]
A. to
B. with
C. about
答案:C
利用()说明高度比较直观。
A.测者子午面天球图
B.天赤道面平面图
C.测者真地平平面图
D.A和C
阅读下面的程序,回答问题。 import java.awt.*; import javax.swing.*; public class T extends JFrame public T ______ super("GridLayout"); Container con=this.getContentPane______; con.setLayout(new GridLayout(2,3)); con.add(new JButton("a")); con.add(new JButton("b")); con.add(new JButton("c")); con.add(new JButton("d")); con.add(new JButton("e")); con.add(new JButton("f")); setSize(200, 80); setVisible(true);public static void main(String args[]) new T______; ①画图表示程序运行后的图形界面。 ②如果程序通过实现某个接口处理按钮的动作事件,则该接口名为何接口中的方法头声明如何