我可以这样做吗?
static_cast<A*>(getSomePtr());
其中
getSomePtr()
将返回nullptr
。这个可以吗? 最佳答案
从Wikipedia article:
nullptr
可隐式转换为任何指针类型,因此使用static_cast
进行显式转换绝对有效。
关于c++ - 我可以将nullptr转换为其他指针类型吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33652629/