标签: c++ pointers typedef
我在cpp文件上写了一些声明typedef函数指针的代码。我应该使用0还是nullptr定义指针函数?
.cpp代码文件:
typedef int (*FPTR)(void *scl); FPTR f = 0, fn = nullptr;
我编译时没有错误,但更好的方法是使用0或nullptr吗?