标题并没有说太多,对此我深表歉意。我不确定如何用一句话来解释我的问题,所以我尽力了。无论如何,我的问题。现在这就是我所做的:
public DeltaMain(int x, int y) {
frame.setSize(x, y);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
new SoundButton(); // I have more buttons after this, I instantize each one.
frame.add(sound);
}
我只是实例化DeltaMain
类来加载它。这是好习惯吗?