簡單,我試圖檢查int []距離是否爲空。嘗試檢查int []是否爲空Java
爲什麼這不起作用?
我的代碼:
int[] distances = {3,6,7,6,1,8,8,2,3,4,5,9};
if(distances != null && !distances.isEmpty()) {
throw new TransportException("No routes in entry");
}
else {
return distances;
}
返回錯誤找不到符號 - 方法是空() – user2863323
請閱讀關於數組類型的教程 –