std::vector<string> my_vec; my_vec.push_back("foo"); // This is OK, so... my_vec.emplace_back("foo"); // This is also OK, and has the same result ...
確定! 回上一頁