- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本 - 添加 C++ Primer 练习代码 - 新增 Learn C++ 教程的 C++ 开发简介章节 - 添加头文件解析文档 - 更新 mkdocs.yml,包含新教程的目录结构 - 修改项目设置,使用 Python 3.10环境
32 lines
768 B
C++
32 lines
768 B
C++
//
|
|
// 3.5.move.semantics.cpp
|
|
// modern c++ tutorial
|
|
//
|
|
// created by changkun at changkun.de
|
|
// https://github.com/changkun/modern-cpp-tutorial
|
|
//
|
|
|
|
#include <iostream> // std::cout
|
|
#include <utility> // std::move
|
|
#include <vector> // std::vector
|
|
#include <string> // std::string
|
|
|
|
int main() {
|
|
|
|
std::string str = "Hello world.";
|
|
std::vector<std::string> v;
|
|
|
|
// use push_back(const T&), copy
|
|
v.push_back(str);
|
|
// "str: Hello world."
|
|
std::cout << "str: " << str << std::endl;
|
|
|
|
// use push_back(const T&&), no copy
|
|
// the string will be moved to vector, and therefore std::move can reduce copy cost
|
|
v.push_back(std::move(str));
|
|
// str is empty now
|
|
std::cout << "str: " << str << std::endl;
|
|
|
|
return 0;
|
|
}
|