我需要發送收集到這個方法:Java方法檢索
public boolean[] save(T... entities) {
return _saveOrUpdateIsNew(entities);
}
,我試圖通過收集:
List<Client> clientsToUpdate = new ArrayList<Client>();
save(clientsToUpdate);
但我得到一個編譯錯誤的方法類型是不適用爲List<Client>
編輯:
後,我加了一行:
clientsToUpdate.toArray(new Client[0]);
我有這樣的編譯錯誤:
The method save(Client...) in the type BaseDAO<Client,Integer> is not applicable for the arguments (Client[])
請向我們展示方法的確切簽名,確切的調用網站和確切的錯誤消息,而不是一些模糊的描述。謝謝。 – NPE
我不知道該代碼是什麼。你能發佈一個完整的例子嗎? –
你能否保持光標在編譯錯誤上並告訴我確切的錯誤? –