我对JList
上星号的连接有疑问。当我在`JList上输入2输出时,我有一个for循环来连接我的星号数。到目前为止,这是我的代码。
答案 0 :(得分:1)
您正在使用每个循环重置字段x
中的文本,而不是添加星号。尝试:
for(v=0; v<ce; v++)
{
x.setText(x.getText() + s);
}
答案 1 :(得分:0)
这是问题先生。
String s = "*";
ce = Integer.parseInt(c.getText());
for (v = 0; v < ce; v++) {
x.setText(s);
}
list.setSize(60, 60);
//this is the wrong part i cant call it out.
q.add(v.getText() + s + "");
q.add(s.getText());
list.setModel(q);