当在java文档中查找某些内容时,我意识到有一种我以前从未见过的嵌套,所以如果你能解释它是什么或它是如何调用的,我将非常感激。
这是我在StackOverflow中的第一个问题,所以如果我违反任何规则,我很抱歉。
代码:
private JComponent createData(DefaultTableModel model)
{
JTable table = new JTable( model )
{ //What are these brackets for? I know it contains a method but I've never seen a method "nested" with a variable initialization.
public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
{
Component c = super.prepareRenderer(renderer, row, column);
// Color row based on a cell value
if (!isRowSelected(row))
{
c.setBackground(getBackground());
int modelRow = convertRowIndexToModel(row);
String type = (String)getModel().getValueAt(modelRow, 0);
if ("Buy".equals(type)) c.setBackground(Color.GREEN);
if ("Sell".equals(type)) c.setBackground(Color.YELLOW);
}
return c;
}
};
真的不知道如何正确使用问题编辑器。
提前致谢!
Here's完整的源代码。
答案 0 :(得分:1)
您找到的内容称为匿名类。在示例中,它扩展了JTable
类,但因为它不想多次使用它,所以它不会给新类命名(因此是匿名的),而是立即创建它的实例,并存储它在table
变量中。
在新课程中,它会覆盖原始prepareRenderer
的{{1}}方法。
在这里,您可以阅读有关匿名类的更多信息: https://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html