gpt4 book ai didi

java - 为什么 getcontentpane() 未定义?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:46:37 24 4
gpt4 key购买 nike

我这里有一个代码,但我收到了这个错误。如何修复以下代码的错误?

Container container = getContentPane();

这是运行代码。

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;

public class ModelJTable{
private DefaultTableModel model;

private JTable table;

public ModelJTable() {
super();
model = new DefaultTableModel();
model.addColumn("Product Name");
model.addColumn("Price");
model.addColumn("Quantity");
model.addColumn("Subtotal");

String[] socrates = { "Socrates", "", "469-399 B.C." };
model.addRow(socrates);
table = new JTable(model);

JButton addButton = new JButton("Add Philosopher");
addButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent event) {
String[] philosopher = { "", "", "" };
model.addRow(philosopher);
}
});

JButton removeButton = new JButton("Remove Selected Philosopher");

removeButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent event) {
model.removeRow(table.getSelectedRow());
}
});
JPanel inputPanel = new JPanel();
inputPanel.add(addButton);
inputPanel.add(removeButton);

Container container = getContentPane();
container.add(new JScrollPane(table), BorderLayout.CENTER);
container.add(inputPanel, BorderLayout.NORTH);

Global.uniFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Global.uniFrame.setSize(800, 300);
Global.uniFrame.setVisible(true);
}
public static class Global{
public static JFrame uniFrame = new JFrame();
}
private static void createGUI(){
new ModelJTable();
}
public static void main(String args[]) {
createGUI();
}
}

我把代码改成这样,它不显示内容。

Container container = new Container();
container.add(new JScrollPane(table), BorderLayout.CENTER);
container.add(inputPanel, BorderLayout.NORTH);
Global.uniFrame.getContentPane();
Global.uniFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Global.uniFrame.setSize(800, 300);
Global.uniFrame.setVisible(true);

最佳答案

因为你的类没有从提供该方法的任何东西中扩展

public class ModelJTable{

你当前的类也没有实现这样的方法......

可以提供此功能的唯一可能类(在您的示例中)是 Global 类中的 uniFrame

... = Global.uniFrame.getContentPane();

老实说,我会认真避免对任何 gui 组件的 static 引用,尤其是当它们未定义为 final 时。 static 引用很可能会被更改,或者如果声明为 final 会将您锁定在一种可能性中。

还有一个风险是其他一些代码可能会尝试做一些它不应该做的事情,比如删除所有东西......

关于java - 为什么 getcontentpane() 未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24567309/

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