Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C++ 11标准中的变量“something”的类型是什么
auto something = nullptr;
?
它的类型是std::nullptr_tC++11 中引入的单值类型,用于表示空指针,并且可以隐式转换为任何其他指针类型。
std::nullptr_t