gpt4 book ai didi

java - 如何重写类中的toString方法

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

我正在尝试生成类的 jList。

如果我这样做:

package test;

import javax.swing.DefaultListModel;

public class TestFrame extends javax.swing.JFrame {

DefaultListModel jList1Model = new DefaultListModel();

public TestFrame() {

initComponents();

jList1Model.addElement(TestClass.class);
jList1.setModel(jList1Model);

}

/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {

jScrollPane1 = new javax.swing.JScrollPane();
jList1 = new javax.swing.JList<>();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

jList1.setModel(new javax.swing.AbstractListModel<String>() {
String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
public int getSize() { return strings.length; }
public String getElementAt(int i) { return strings[i]; }
});
jScrollPane1.setViewportView(jList1);

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 278, Short.MAX_VALUE)
.addContainerGap())
);

pack();
}// </editor-fold>

/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(TestFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(TestFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(TestFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(TestFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>

/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new TestFrame().setVisible(true);
}
});
}

// Variables declaration - do not modify
private javax.swing.JList<String> jList1;
private javax.swing.JScrollPane jScrollPane1;
// End of variables declaration
}

成为我的TestClass:

package test;

public class TestClass {

public static String name = "Test Class 1";
public int foo;
public int bar;


}

然后我得到:

enter image description here

到目前为止,一切顺利。

现在我希望在 jList1 中显示 name 类属性的内容,而不是 class test.TestClass

我已经尝试过这个:

public class TestClass {

public static String name = "Test Class 1";
public int foo;
public int bar;

public static String toString() {
return name;
}

}

但我什至无法编译它:

toString() in TestClass cannot override toString() in Object overriding mehtod is static.

最佳答案

不是覆盖toString方法的答案,而是如何让列表显示与toString返回的内容不同的内容的解决方案。将 ListCellRenderer 添加到列表中。基本上扩展默认的(JLabel 本身的扩展)并更改应显示的内容:

class ClassRenderer extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(
JList<?> list, Object value, int index, boolean selected, boolean focus) {
if (value instanceof Class) {
value = ((Class<?>) value).getSimpleName();
}
return super.getListCellRendererComponent(list, value, index, selected, focus);
}
}

要使用它,只需调用(在显示列表之前)

list.setCellrenderer(new ClassRenderer());

更多细节,更好的解释可以在官方教程中找到:Providing a Custom Renderer

<小时/>

JB Nizet 建议的解决方案(我的解释,希望我理解正确):创建一个对象来保存 Class 及其标签;将其实例添加到列表中:

public class LabeledClass {

private final String label;
private final Class<?> theClass;

LabeledClass(String label, Class<?> theClass) {
this.label = Objects.requireNonNull(label);
this.theClass = theClass; // TODO null check?
}

public Class<?> getTheClass() {
return theClass;
}

@Override
public String toString() {
return label;
}

// TOD hashcode, equals ?
}

用作:

model.addElement(new LabeledClass("Test", TestClass.class));

无需为此更改默认单元格渲染器。优点:如果更改为在图表中使用,则更加面向对象,非常简单的示例,而不是 LabeledClass:

public abstract class ChartEnricher {

private final String name;

protected ChartEnricher(String name) {
this.name = Objects.requireNonNull(name);
}

public abstract void enrichChart();

@Override
public String toString() {
return name;
}
}

必须为每个可能的条目实现 enrichChart 方法,或者有一个通用方法,该方法使用为其构造函数指定的 Class(如 LabeledClass) >)。显然,如果需要更多功能,可以根据用例进行扩展。

关于java - 如何重写类中的toString方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59223771/

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