标签: c++ c++11 smart-pointers c++14 noexcept
在C ++ 11和草案C ++ 14中,operator*的解除引用运算符(operator->和shared_ptr)都是noexcept。但对于unique_ptr,operator->为noexcept,但operator*不是。 operator* unique_ptr为什么不noexcept(或者operator* shared_ptr为什么noexcept?)
operator*
operator->
shared_ptr
noexcept
unique_ptr