标签: c++ c embedded
我见过使用double not(!!)来检查指针的代码。但是我没有找到使用的优势!!条件检查。有人可以说明使用它的目的和优势。
int *Ptr; /* ... */ if(!!Ptr) { /* ... */ }