gpt4 book ai didi

java - 方法缺少返回类型且没有 void?

转载 作者:行者123 更新时间:2023-12-01 04:45:43 24 4
gpt4 key购买 nike

这段代码在我的教科书上,但我不理解的是TestPanels()方法。它没有返回类型,也没有 void。怎么会发生这种事呢?

public class TestPanels extends JFrame {

public TestPanels() {
JPanel p1 = new JPanel();
p1.setLayout(new GridLayout(4,3));

for (int i = 1; i <= 9; i++) {
p1.add(new JButton(""+i));
}

p1.add(new JButton(""+0));
p1.add(new JButton("Start"));
p1.add(new JButton("Stop"));

JPanel p2 = new JPanel(new BorderLayout());
p2.add(new JTextField("Time to be displayed here"), BorderLayout.NORTH);
p2.add(p1, BorderLayout.CENTER);

add(p2, BorderLayout.EAST);
add(new JButton("Food to be placed here"), BorderLayout.WEST);

}

public static void main(String[] args) {
TestPanels frame = new TestPanels();
frame.setTitle("The Front View of a Microwave Oven");
frame.setSize(400, 250);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

最佳答案

它是一个构造函数而不是一个方法。方法将始终具有返回类型或 void(无返回值)。

关于java - 方法缺少返回类型且没有 void?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15893261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com