diff --git a/book/zh-cn/03-runtime.md b/book/zh-cn/03-runtime.md index 857d8ad..c43ab0f 100644 --- a/book/zh-cn/03-runtime.md +++ b/book/zh-cn/03-runtime.md @@ -397,8 +397,8 @@ int main() { int main() { -std::string str = "Hello world."; -std::vector v; + std::string str = "Hello world."; + std::vector v; // 将使用 push_back(const T&), 即产生拷贝行为 v.push_back(str);