今天在刷算法题时,新建了ArrayList变量,发现ArrayList与null结合起来使用时经常出错. 请查看如下几种例子, 1.new一个ArrayList<>类型的数据, import java.util.ArrayList; public class Test { @SuppressWarnings("unused") public static void main(String[] args) { ArrayList<Integer> al=new A…
sql中NULL的问题 今天一不小心在sql中写出以下脚本 select defaultPositionId from TableName where UserId=1100528 and defaultPositionId =null 执行之后大惊怎么没有结果,使用select * from tableName 该列确实为null怎么查补出来难道自己人品问题于是自己又写了以下判断 if(null=null) BEgin print 'fff' end else begin print…