C++11 引入了的新特性与实例说明

打印 上一主题 下一主题

主题 999|帖子 999|积分 2997

C++11 引入了很多重要的新特性,以下是一些关键特性及其对应的示例代码,用于体现这些特性的用法和优势。

1. 自动类型推导 (auto)

auto 关键字允许编译器自动推导变量的类型,简化代码誊写。
  1. #include <iostream>
  2. #include <vector>
  3. int main() {
  4.     std::vector<int> vec = {1, 2, 3, 4, 5};
  5.     // 使用 auto 自动推导迭代器类型
  6.     for (auto it = vec.begin(); it != vec.end(); ++it) {
  7.         std::cout << *it << " ";
  8.     }
  9.     // 使用 auto 推导元素类型
  10.     for (auto& value : vec) {
  11.         std::cout << value << " ";
  12.     }
  13.     return 0;
  14. }
复制代码

2. 范围基于的 for 循环

范围 for 循环简化了对容器或数组的遍历。
  1. #include <iostream>
  2. #include <vector>
  3. int main() {
  4.     std::vector<int> vec = {1, 2, 3, 4, 5};
  5.     // 使用范围 for 循环遍历容器
  6.     for (const auto& value : vec) {
  7.         std::cout << value << " ";
  8.     }
  9.     return 0;
  10. }
复制代码

3. Lambda 表达式

Lambda 表达式允许在代码中定义匿名函数,常用于简化回调函数或算法中的函数对象。
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. int main() {
  5.     std::vector<int> vec = {1, 2, 3, 4, 5};
  6.     // 使用 Lambda 表达式作为谓词
  7.     std::sort(vec.begin(), vec.end(), [](int a, int b) {
  8.         return a > b; // 降序排序
  9.     });
  10.     for (const auto& value : vec) {
  11.         std::cout << value << " ";
  12.     }
  13.     return 0;
  14. }
复制代码

4. 右值引用和移动语义 (std::move)

右值引用和移动语义允许高效地转移资源,避免不必要的拷贝。
  1. #include <iostream>
  2. #include <string>
  3. class MyString {
  4. public:
  5.     MyString(const char* str) {
  6.         std::cout << "Constructor called!" << std::endl;
  7.         size = strlen(str);
  8.         data = new char[size + 1];
  9.         memcpy(data, str, size + 1);
  10.     }
  11.     // 移动构造函数
  12.     MyString(MyString&& other) noexcept {
  13.         std::cout << "Move constructor called!" << std::endl;
  14.         data = other.data;
  15.         size = other.size;
  16.         other.data = nullptr;
  17.         other.size = 0;
  18.     }
  19.     ~MyString() {
  20.         delete[] data;
  21.     }
  22.     void print() const {
  23.         std::cout << data << std::endl;
  24.     }
  25. private:
  26.     char* data;
  27.     size_t size;
  28. };
  29. int main() {
  30.     MyString s1("Hello");
  31.     MyString s2 = std::move(s1); // 调用移动构造函数
  32.     s2.print(); // 输出: Hello
  33.     // s1.print(); // 错误:s1 的资源已被转移
  34.     return 0;
  35. }
复制代码

5. 智能指针 (std::unique_ptr, std::shared_ptr)

智能指针用于自动管理动态内存,避免内存泄漏。
  1. #include <iostream>
  2. #include <memory>
  3. class MyClass {
  4. public:
  5.     MyClass() {
  6.         std::cout << "MyClass constructed!" << std::endl;
  7.     }
  8.     ~MyClass() {
  9.         std::cout << "MyClass destroyed!" << std::endl;
  10.     }
  11.     void doSomething() {
  12.         std::cout << "Doing something!" << std::endl;
  13.     }
  14. };
  15. int main() {
  16.     // 使用 std::unique_ptr
  17.     std::unique_ptr<MyClass> ptr1(new MyClass());
  18.     ptr1->doSomething();
  19.     // 使用 std::shared_ptr
  20.     std::shared_ptr<MyClass> ptr2 = std::make_shared<MyClass>();
  21.     ptr2->doSomething();
  22.     return 0;
  23. }
复制代码

6. nullptr 关键字

nullptr 用于更换 NULL,表示空指针,避免类型歧义。
  1. #include <iostream>
  2. void foo(int* ptr) {
  3.     if (ptr) {
  4.         std::cout << "Pointer is not null!" << std::endl;
  5.     } else {
  6.         std::cout << "Pointer is null!" << std::endl;
  7.     }
  8. }
  9. int main() {
  10.     int* ptr = nullptr;
  11.     foo(ptr); // 输出: Pointer is null!
  12.     int x = 10;
  13.     ptr = &x;
  14.     foo(ptr); // 输出: Pointer is not null!
  15.     return 0;
  16. }
复制代码

7. std::thread 多线程支持

C++11 引入了尺度库对多线程的支持。
  1. #include <iostream>
  2. #include <thread>
  3. void threadFunction() {
  4.     std::cout << "Hello from thread!" << std::endl;
  5. }
  6. int main() {
  7.     std::thread t(threadFunction);
  8.     t.join(); // 等待线程结束
  9.     std::cout << "Main thread finished!" << std::endl;
  10.     return 0;
  11. }
复制代码

8. std::function 和 std::bind

std::function 用于存储可调用对象,std::bind 用于绑定参数。
  1. #include <iostream>
  2. #include <functional>
  3. void printSum(int a, int b) {
  4.     std::cout << "Sum: " << a + b << std::endl;
  5. }
  6. int main() {
  7.     // 使用 std::function 存储可调用对象
  8.     std::function<void(int, int)> func = printSum;
  9.     func(2, 3); // 输出: Sum: 5
  10.     // 使用 std::bind 绑定参数
  11.     auto boundFunc = std::bind(printSum, 10, std::placeholders::_1);
  12.     boundFunc(5); // 输出: Sum: 15
  13.     return 0;
  14. }
复制代码

9. constexpr 常量表达式

constexpr 用于在编译时盘算常量表达式。
  1. #include <iostream>
  2. constexpr int factorial(int n) {
  3.     return (n <= 1) ? 1 : n * factorial(n - 1);
  4. }
  5. int main() {
  6.     constexpr int result = factorial(5); // 编译时计算
  7.     std::cout << "Factorial of 5: " << result << std::endl; // 输出: 120
  8.     return 0;
  9. }
复制代码

10. std::array 和 std::tuple

std::array 是固定大小的数组容器,std::tuple 用于存储多个不同类型的值。
  1. #include <iostream>
  2. #include <array>
  3. #include <tuple>
  4. int main() {
  5.     // 使用 std::array
  6.     std::array<int, 3> arr = {1, 2, 3};
  7.     for (const auto& value : arr) {
  8.         std::cout << value << " ";
  9.     }
  10.     std::cout << std::endl;
  11.     // 使用 std::tuple
  12.     std::tuple<int, double, std::string> tup(10, 3.14, "Hello");
  13.     std::cout << std::get<0>(tup) << " " << std::get<1>(tup) << " " << std::get<2>(tup) << std::endl;
  14.     return 0;
  15. }
复制代码

总结

以上示例展示了 C++11 中一些重要的新特性,包罗自动类型推导、范围 for 循环、Lambda 表达式、移动语义、智能指针、nullptr、多线程支持、std::function 和 std::bind、constexpr 以及 std::array 和 std::tuple。这些特性极大地进步了 C++ 的现代化编程能力。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

钜形不锈钢水箱

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表