我有 2 节课:
- 类
X
包含方法listObjects();
- class
Y
是 GUI 类,它包含按钮列表。
我想要的是,每当单击类中的按钮列表时Y
,我希望执行listObjects();
类中的方法X
并将输出显示在名为 .txt 的 txt 字段中txtfieldList
。
我在按钮列表下的类中包含以下代码
X x = new X (); // create an instance of the class X in the GUI class
txtfieldList.setText(x.list()); // execute the method list from class X and display the output in the tstfield
但我得到的错误是:
JTextComponent 类型中的方法 setText(string) 不适用于参数 (void)
有人可以帮助找出错误在哪里吗?