您试图在 null 引用上调用 isEmpty() 方法(作为 List test = null; )。这肯定会抛出 NullPointerException 。你应该改为 if(test!=null) (首先检查 ...
確定! 回上一頁