判断野指针,无效指针
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断野指针,无效指针相关的知识,希望对你有一定的参考价值。
该方法仅适用于windows
1 int is_invalid_ptr(void* memory_pointer) 2 { 3 if (NULL == memory_pointer) { 4 return 1; 5 } 6 7 __try { 8 return *((int*)memory_pointer) ? 0 : 0; 9 } 10 __except (1) { 11 return 1; /** exception_code(); STATUS_ACCESS_VIOLATION*/ 12 } 13 }
以上是关于判断野指针,无效指针的主要内容,如果未能解决你的问题,请参考以下文章