不幸的是,我的任务是在Java Swing中实现MPJ-Express。执行代码时,我不断获得多个JFrame。我使用过OOP概念。现在,我仅使用一个简单的JFrame来显示一个Button,当我单击该按钮时,它应该为我提供“进程的等级”和“大小”。
我已经尝试了所有方法,但从顺序编程到OOP的一切尝试都没有了。我确实尝试过一件事,当等级为0时,它显示1个JFrame,但是当我单击按钮时,每次仅获得等级0,我希望显示所有等级。
public class Main {
public static void main(String[] args) {
Gui gui = new Gui(args);
}
}
public class Process extends mpi.MPI {
public final int rank;
public final int size;
public Process(String[] args){
super.Init(args);
this.rank = COMM_WORLD.Rank();
this.size = COMM_WORLD.Size();
}
public void exec() {
System.out.println("Rank <" + rank + ">");
System.out.println("Size <" + size + ">");
}
public void processFinalize() throws Throwable {
super.finalize();
}
}
class Gui {
Process p;
public Gui(String[] args) {
p = new Process(args);
welcomeScreen();
}
private void welcomeScreen() {
// Create and set up a frame window
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("MPJ Demo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Set the panel to add buttons
JPanel panel = new JPanel();
BoxLayout boxlayout = new BoxLayout(panel, BoxLayout.X_AXIS);
panel.setLayout(boxlayout);
// Set border for the panel
panel.setBorder(new EmptyBorder(new Insets(150, 200, 150, 200)));
JButton jb1 = new JButton("Button 1");
jb1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
System.out.println("Rank <" + p.rank + ">");
System.out.println("Size <" + p.size + ">");
}
});
panel.add(jb1);
frame.add(panel);
frame.pack();
frame.setVisible(true);
}
}
让进程数为3
等级:0
尺寸:3
排名:2
尺寸:3
排名:1
尺寸:3
不是:
等级:0
大小:3
我希望显示所有等级。