我想知道调用时这会如何干扰主类,我没有找到合适的方法来制作主类并在决赛中调用它。
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import javax.imageio.*;
import javax.swing.*;
class Converter extends JFrame implements
KeyListener, ItemListener, MouseListener {
//insert body here//
@Override
public void paintComponents (Graphics g) {g.drawImage(icon.getImage(), 0, 20, 500,210, this);
super.paintComponents (g);
Color transparent = new Color (0, true);
background.setBackground(transparent);
repaint ();
background.setVisible(true);
pack();
setContentPane(background);
background.setLayout(new FlowLayout());
add (background);
}
}
class ShowconverterFrame {
public static void main (String args []) {
new Converter ();
}
}
嗨,我想弄清楚为什么这不起作用......任何帮助表示赞赏!它返回“找不到主类”,并且不能声明为静态。我刚刚将这件作品添加到身体上,突然间整个事情都停止了。我一直在尝试实现一个 JPanel,其中我有一个 JLabel 是一个图像。