我有那些类:主要和GUI。在GUI中有actionListener,它从用户界面面板收集信息。如何将这些变量发送到驱动程序类,执行那里的一切?我需要将它们添加到无限循环中以绘制移动对象,绘制方法在其他类中。 GUI具有扩展框架
这是课程:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class GUI extends Frame implements WindowListener,ActionListener {
JLabel name1 = new JLabel("Name");
JLabel color1 = new JLabel("Color");
JLabel diam1 = new JLabel("Diameter");
JLabel dist1 = new JLabel("Distance");
JLabel speed1 = new JLabel("Speed");
JTextField name2 = new JTextField();
JTextField color2 = new JTextField();
JTextField diam2 = new JTextField();
JTextField dist2 = new JTextField();
JTextField speed2 = new JTextField();
public void windowClosing(WindowEvent e) {
dispose();
System.exit(0);
}
double distance;
int Speed;
double diameter;
public void actionPerformed(ActionEvent e) {
createVariables();
}
public void createVariables(){
try {
distance = Double.parseDouble(dist2.getText());
Speed = Integer.parseInt(speed2.getText());
diameter = Double.parseDouble(diam2.getText());
}
catch(NumberFormatException i) {
}
Planet cP = new Planet(name2.getText(),distance,diameter,color2.getText(),Speed );
Main plnt = new Main(cP);
}
public void createFrame1(){
addWindowListener(this);
setLayout(new GridLayout(6,6,5,5));
JButton mygt = new JButton("Add planet");
mygt.addActionListener(this);
name2.setText("belekoks");color2.setText("RED");diam2.setText("30");dist2.setText(" 60");speed2.setText("2");
add(name1);add(name2);add(color1);add(color2);add(diam1);
add(diam2);add(dist1);add(dist2);add(speed1);add(speed2);
add(mygt);
}
public GUI(String title){
super(title);
createFrame1();
}
public void windowClosed(WindowEvent e) {}
public void windowActivated(WindowEvent arg0) {}
public void windowDeactivated(WindowEvent arg0) {}
public void windowDeiconified(WindowEvent arg0) {}
public void windowIconified(WindowEvent arg0) {}
public void windowOpened(WindowEvent arg0) {}
}
和Main:
import java.awt.event.ActionEvent;
import java.util.Random;
public class Main{
/**
* @param args
*/
public Main(Planet name){
super(name);
}
public static void main(String[] args) {
SolarSystem system = new SolarSystem(300, 300);
GUI p = new GUI("New Planet");
p.pack();
p.setVisible(true);
Sun sun = new Sun("Sun", 0, 90, "YELLOW", 0);
Planet venus = new Planet("Venus",70,15,"ORANGE",2);
Planet earth = new Planet("Earth",100,20,"BLUE",1);
Moon moon = new Moon("Moon",earth.dist,5,"GRAY", 1, 30, 3);
Moon[] moons = new Moon[100];
moons[0] = moon;
Planet[] planets = new Planet[100];
planets[0] = earth;
planets[1] = venus;
Random rG = new Random();
Asteroid[] asteroids = new Asteroid[100];
for(int i=0; i<100;i++){
Asteroid Asteroids = new Asteroid("Asteroid", rG.nextDouble()+rG.nextInt(10)+45,rG.nextDouble()+rG.nextInt(10),"DARK_GRAY",rG.nextInt(360 ), 1);
asteroids[i]=Asteroids;
}
/*LinkedList list = new LinkedList();
for (int i=0;i<1;i++){
list.add(moons[i]);
}
for (int i=0;i<2;i++){
list.add(planets[i]);
}
for (int i=0;i<100;i++){
list.add(asteroids[i]);
}
for (int i=0;i<100;i++){
list.add(sun);
}
for(int y=0;y<2;y++){
planets[2].move();
planets[2].drawOn(system);
system.finishedDrawing();
}
for (int i=0; i>=0; i++){
sun.drawOn(system);
for(int y=0;y<3;y++){
planets[y].move();
planets[y].drawOn(system);
}
for (int y=0; y<100; y++){
asteroids[y].move();
asteroids[y].drawOn(system);
}
for (int y=0; y<1; y++){
moons[y].move();
moons[y].drawOn(system);
}
system.finishedDrawing();
}
*/
}
}
我不希望你查看整个代码,但主要是我在GUI中的actionListener中获取变量,我想将它们传递给main,以便创建一个我以后可以绘制的对象。
planet class创建一个对象:
public class Planet extends CosmicEntity {
public Planet(String name, double distance, double diameter, String col, int speed) {
super(name,distance,diameter,col,speed, 0);
}
}
和CosmicEntity类,它包含从传递的变量(超级(名称,距离,直径,col,速度,0))绘制行星的所有变量和方法。
答案 0 :(得分:1)
根据提供的信息很难确切知道您需要什么,但我认为您不想使用无限循环,而不是GUI。大多数简单的动画都可以通过Swing Timer轻松驱动。
至于你的另一个问题,一般规则是如果对象具有对另一个对象的有效引用,则它们可以调用其他对象的方法。如何为您的项目执行此操作取决于您的代码。我们经常将一个对象的引用传递给另一个对象,但作为方法或构造函数参数。例如,
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class FooMain {
public static void main(String[] args) {
FooNonGui nonGuiReference = new FooNonGui();
FooGui fooGui = new FooGui(nonGuiReference);
fooGui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fooGui.pack();
fooGui.setLocationRelativeTo(null);
fooGui.setVisible(true);
}
}
class FooGui extends JFrame implements ActionListener {
private FooNonGui nonGuiVariable;
private int counter = 0;
public FooGui(FooNonGui nonGuiParameter) {
super("GUI");
this.nonGuiVariable = nonGuiParameter;
JButton button = new JButton("Button");
button.addActionListener(this); // I hate doing this, but for brevity's sake...
add(button);
}
public void actionPerformed(ActionEvent e) {
nonGuiVariable.nonGuiMethod(counter);
counter++;
}
}
class FooNonGui {
public void nonGuiMethod(int counter) {
System.out.print("In non-GUI method. ");
System.out.println("counter is " + counter);
}
}
我建议您向我们提供更多信息,以便我们更了解您的问题并为您提供更好的帮助。此链接可能有所帮助:Smart Questions
编辑A:你在为什么添加你的行星? SolarSystem对象?无论它是哪一类,都可能有或应该有一个公共的addPLanet(行星行星)方法。如果是SolarSystem,那么你需要将对象的引用传递给你的GUI类,类似于我上面的内容。