3

方法getStrings()是给我一个. ClassCastException谁能告诉我应该如何获得模型?谢谢!

public class HW3model extends DefaultListModel<String>
{           
    public HW3model()
    {
        super();
    }

    public void addString(String string)
    {
        addElement(string);
    }

    /**
     * Get the array of strings in the model.
     * @return
     */
    public String[] getStrings()
    {
         return (String[])this.toArray();
    }
}    
4

3 回答 3

2

返回的值toArray是一个Object数组。

也就是说,它们被声明为Object[], not String[],然后通过 a 返回Object[]

这意味着您永远不能将其大小写为String数组,它根本无效。

您将不得不自己复制这些值......例如

public String[] getStrings()
    Object[] oValues= toArray();
    String[] sValues = new String[oValues.length];
    for (int index = 0; index < oValues.length; index++) {
        sValues[index] = oValues[index].toString();
    }
    return sValues;
}
于 2013-02-18T23:55:24.783 回答
1

您不能将一个数组转换为另一个数组的类型,因此您必须确保创建自己的数组:

public String[] getStrings() {
    String[] result = new String[getSize()];
    copyInto(result);
    return result;
}
于 2013-02-18T23:51:45.077 回答
1

试试这个,看看是否可行

String[] stringArrayX = Arrays.copyOf(objectArrayX, objectArrayX.length, String[].class);
于 2013-02-18T23:57:24.383 回答