我在网上找到了这个代码,它适用于我的应用程序。我正在努力追查并更彻底地理解它。我找不到任何解释使用“add(new Surface());”的文档。声明。我理解它的作用,但这是我不明白的地方:
(下面的示例代码)
package testMainMethod;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
class Surface extends JPanel {
private void doDrawing(Graphics g, int x) {
double xd = (double) x;
Graphics2D g2d = (Graphics2D) g;
// Code to draw line image goes here
}
@Override
public void paintComponent(Graphics g) {
for (int i = 0; i < 512; i++) {
// super.paintComponent(g); // this erases each line
doDrawing(g, i);
}
}
}
public class SampleAddMethod extends JFrame {
public SampleAddMethod() {
initUI();
}
private void initUI() {
setTitle("Lines");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
add(new Surface());
setSize(650, 350);
setLocationRelativeTo(null);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
SampleAddMethod lines = new SampleAddMethod();
lines.setVisible(true);
}
});
}
}
答案 0 :(得分:1)
为什么“super.add(new Surface()); work,but”“SampleAddMethod.add(new Surface());”失败?
因为add(Component)
是Container
上的实例方法,所以基本上 - SampleAddMethod
是Container
的子类。因此,add
中的initUI
电话隐含this.add(new Surface())
。您无法将其称为SampleAddMethod.add
,因为仅当它是静态方法时才会起作用。
我是否正确(new Surface())创建了“匿名类”?
没有。它只是调用一个构造函数。代码相当于:
Surface surface = new Surface();
add(surface);
您向我们展示的代码中唯一的匿名类型位于main
,其中它创建了一个实现Runnable
的新匿名类。