cpp-quiz icon indicating copy to clipboard operation
cpp-quiz copied to clipboard

这是个中文版的C++小测题。

Results 3 cpp-quiz issues
Sort by recently updated
recently updated
newest added

对依赖类型和依赖模板需要显式消歧义(注意msvc不标准) ` typename std::decay::type ` ` T::template get ` ` typename Allocator::template rebind::type `

比如 ` decltype(throw) ` 等较不直观的情况 对变量和对表达式的区别:返回 ` decltype(auto) ` 时`return x;`和`return(x);`的区别 即使具名变量声明类型为右值引用也可能得到左值引用结果