用 malloc 或 new 申请内存之后,应该立即检查指针值是否为 NULL. 防止使用指针值为 NULL 的内存. #include <iostream> #include <string.h> //main()函数 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std;
在 SQL 中,我们如果在操作数据库时使用 WHERE 子句判断一个列的值是否为 NULL,我们不能够使用 column_name=null 来进行判断,这是不正确的,我们应该使用 is null 来进行判断. 上图中我们的测试表 t1 里面有两条记录,其中有一条记录的值全为 NULL,我们要通过 DELETE 语句来删除这条记录,如果我们使用 delete from t1 where id1=null; 来操作的话是删除不了这条数据的. 我们应该通过 delete from t1 where