我可能很傻,但这让我发疯。我已经四处搜索,但对编程相对较新,而且我无法理解。如果可以的话请帮忙!bar 参数采用 arraylist.toArray() ,它只是充满了字符串。
public bar(Object[] contents) {
for (Object o : contents) {
String s = (String) o;
if (s == null) {
System.out.println("newline"); //checking
} else {
try {
arrayContents.add(new line(s));
} catch (Exception ex) {
System.out.println("error printing note: " + s + " " + ex + " in bar " + i);
}
}
i++;
}
// System.out.println(arrayContents);
}