假设有:

std::string s; 考虑如下代码: std::vector<std::string> v { std::move(s) }; 请问最终 v[0] 这个对象的构造方式为?
Anonymous Quiz
拷贝构造
移动构造
22 answered
 
 
Back to Top