在我的Const.java中我有
public static final String[] MONTHS = new String[]{<list of string values>}
public static final String[] YEARS = new String[]{<list of string values>}
public static int MONTH_NUM = <some int>;
public static int YEAR_NUM = <some int>;
在我的其他文件中
ArrayList<String> skList = new ArrayList<String>();
String month = Const.MONTHS[Const.MONTH_NUM];
String year = Const.YEARS[Const.YEAR_NUM];
skList.add(month);
skList.add(year);
然后我收到了这个错误: 类型ArrayList中的方法add(String)不适用于参数(String [])
在线:
skList.add(month);
skList.add(year);
希望你能提供帮助。我已经使用了所有可能的关键字,我可以在Google上找到。
感谢。
注意:重新启动eclipse并重建几次后,它就运行了。 谢谢你们所有的评论。