public void test(Integer id, List counts){ for (Integer count : counts) { // 参数counts 可能为null System.out.println(count.toString()); // 集合中的元素可能为null } String sid = id.toString(); // 参数id可能为null Customer customer = getCustomerByID(sid); // 函数返回值肯能为null System.out.println(customer.getName().length()); // 对象中的属性可能为null }