我只是寫這樣的構造:Java - 構造函數是靜態的嗎?
public ArchivesManager(String identifier) {
String[] components = String.split("\nNEW");
}
但有一條錯誤消息:non-static method split(java.lang.String) cannot be referenced from a static context
。我知道錯誤信息,但爲什麼構造函數是靜態的?!因爲這個String.split("\nNEW");
split
哦,很明顯......我手邊有一些錯誤的文檔。 – ryyst 2011-01-27 10:13:21