91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++11、C++14、C++17、C++20常用新特性有哪些

發布時間:2023-03-10 13:48:53 來源:億速云 閱讀:193 作者:iii 欄目:開發技術

這篇文章主要介紹“C++11、C++14、C++17、C++20常用新特性有哪些”,在日常操作中,相信很多人在C++11、C++14、C++17、C++20常用新特性有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++11、C++14、C++17、C++20常用新特性有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

C++11

自動類型推斷(auto關鍵字):C++11引入了auto關鍵字,可以根據變量初始值自動推導出變量類型。例如:

auto i = 42;  // i被推導為int類型
auto d = 3.14;  // d被推導為double類型

基于范圍的for循環(range-based for loop):可以方便地遍歷容器中的元素,例如:

std::vector<int> v = {1, 2, 3, 4, 5};
for (auto& i : v) {
    i *= 2;
}

lambda表達式:lambda表達式可以用來定義匿名函數,方便地傳遞函數對象,例如:

auto f = [](int x, int y) -> int { return x + y; };
int result = f(3, 4);  // result = 7

移動語義和右值引用(move semantics和rvalue references):通過右值引用可以實現資源的有效移動而不是復制,提高程序的效率,例如:

std::vector<int> v1 = {1, 2, 3, 4, 5};
std::vector<int> v2 = std::move(v1);  // v2接管了v1的資源,v1變為無效狀態

智能指針(smart pointers):C++11引入了三種智能指針:unique_ptr、shared_ptr和weak_ptr,可以更好地管理動態內存,避免內存泄漏和懸空指針,例如:

std::unique_ptr<int> p(new int(42));
std::shared_ptr<int> q = std::make_shared<int>(42);
std::weak_ptr<int> r = q;

空指針常量(nullptr):C++11引入了nullptr關鍵字,用于表示空指針,避免了NULL宏帶來的一些問題,例如:

void f(int* p) {}
f(nullptr);  // 可以顯式地傳遞空指針

右值引用與移動構造函數:右值引用可以方便地實現移動構造函數和移動賦值運算符,用于高效地處理臨時對象和避免復制開銷,例如:

class MyVector {
public:
    MyVector(MyVector&& other) noexcept {
        // 移動構造函數
    }
    MyVector& operator=(MyVector&& other) noexcept {
        // 移動賦值運算符
        return *this;
    }
};

初始化列表:可以方便地初始化數組和容器,例如:

std::vector<int> v = {1, 2, 3, 4, 5};
std::map<std::string, int> m = {{"one", 1}, {"two", 2}, {"three", 3}};

類型別名(type alias):可以使用using關鍵字定義類型別名,例如:

using IntVec = std::vector<int>;
IntVec v = {1, 2, 3, 4, 5};

模板別名(template alias):可以使用using關鍵字定義模板別名,例如:

template <typename T>
using Vec = std::vector<T>;
Vec<int> v = {1, 2, 3, 4, 5};

constexpr函數和變量:可以在編譯期計算出值,例如:

constexpr int fib(int n) {
    return (n <= 1) ? 1 : fib(n-1) + fib(n-2);
}
constexpr int x = fib(10);  // 編譯期計算出x的值為89

變長參數模板(variadic templates):可以接受任意數量和類型的參數,例如:

template <typename... Args>
void print(Args... args) {
    std::cout << sizeof...(args) << std::endl;  // 打印參數個數
}
print(1, 2, 3);  // 打印3
print("hello", 3.14);  // 打印2

C++14

泛型lambda表達式:可以使用auto關鍵字在lambda表達式中推斷參數類型,例如:

auto sum = [](auto x, auto y) { return x + y; };
std::cout << sum(1, 2) << std::endl;  // 輸出3
std::cout << sum(1.5, 2.5) << std::endl;  // 輸出4.0

return type deduction for normal functions(函數返回類型推斷):可以使用auto關鍵字讓編譯器自動推斷函數的返回類型,例如:

auto add(int x, int y) {
    return x + y;  // 返回類型會自動推斷為int
}

模板變量(template variable):可以使用關鍵字template定義模板變量,例如:

template <typename T>
constexpr T pi = T(3.1415926535897932385);
std::cout << pi<double> << std::endl;  // 輸出3.14159...

靜態斷言(static_assert)的增強:可以在靜態斷言中加入一個字符串提示,例如:

static_assert(sizeof(int) == 4, "int必須是4字節");  // 如果sizeof(int)不等于4,會輸出提示信息

字符串字面量的增強:可以使用單引號(')包圍字符,例如:

constexpr char operator""_c(char c) { return c; }  // 將字符轉化為字符
std::cout << 'a'_c << std::endl;  // 輸出字符'a'

按值捕獲的增強:可以使用關鍵字init來對按值捕獲的變量進行初始化,例如:

int x = 1, y = 2;
auto f = [x, y = x + 1] { return x + y; };
std::cout << f() << std::endl;  // 輸出4

變量模板(variable template):可以使用關鍵字template定義變量模板,例如:

template <typename T>
constexpr T pi = T(3.1415926535897932385);
std::cout << pi<double> << std::endl;  // 輸出3.14159...

內存模型的增強:增加了對內存模型的規定,例如:

std::atomic<int> x = 0;  // 原子變量
#pragma omp parallel for
for (int i = 0; i < 1000; ++i) {
    x.fetch_add(1);  // 線程安全的對x進行加一操作
}
std::cout << x << std::endl;  // 輸出1000

C++17

結構化綁定(Structured Binding):可以使用auto關鍵字對一個結構體或元組進行結構化綁定,例如:

std::pair<int, int> p = {1, 2};
auto [x, y] = p;  // 結構化綁定
std::cout << x << " " << y << std::endl;  // 輸出1 2

if語句和switch語句的初始化:可以在if語句和switch語句的判斷條件中進行變量初始化,例如:

if (int x = get_value(); x > 0) {  // 在if語句中初始化變量x
    std::cout << "x is positive" << std::endl;
}

類模板的參數推斷(Class Template Argument Deduction,CTAD):可以讓編譯器自動推斷類模板的模板參數,例如:

std::pair p{1, 2};  // 編譯器可以自動推斷出std::pair<int, int>

constexpr if:可以在編譯期進行條件判斷,根據判斷結果選擇不同的代碼路徑,例如:

template <typename T>
void foo(T t) {
    if constexpr (std::is_pointer_v<T>) {  // 如果T是指針類型
        std::cout << "t is a pointer" << std::endl;
    } else {  // 如果T不是指針類型
        std::cout << "t is not a pointer" << std::endl;
    }
}

折疊表達式(Fold Expression):可以使用折疊表達式來簡化代碼,例如:

template <typename... Args>
auto sum(Args... args) {
    return (args + ...);  // 對args進行折疊求和
}
std::cout << sum(1, 2, 3, 4) << std::endl;  // 輸出10

內聯變量(Inline Variable):可以使用inline關鍵字來定義內聯變量,例如:

inline int x = 1;  // 定義一個內聯變量x,初始值為1

嵌套命名空間(Nested Namespace):可以在命名空間中嵌套命名空間,例如:

namespace A {
    namespace B {
        void foo() {
            std::cout << "hello, world!" << std::endl;
        }
    }
}
A::B::foo();  // 調用函數foo

C++20

概念(Concepts):概念是一種新的語言結構,可以用來描述模板參數的要求,例如:

template <typename T>
concept Integral = std::is_integral_v<T>;
template <typename T>
void foo(T t) requires Integral<T> {  // 使用概念描述模板參數要求
    std::cout << t << std::endl;
}
foo(1);  // 調用foo函數

三方合并運算符(Three-way Comparison Operator):可以使用<=>運算符對兩個對象進行三方比較,例如:

struct Point {
    int x, y;
    auto operator<=>(const Point& other) const {
        return std::tie(x, y) <=> std::tie(other.x, other.y);
    }
};
bool operator==(const Point& lhs, const Point& rhs) {
    return lhs.x == rhs.x && lhs.y == rhs.y;
}
std::set<Point> s{{1, 2}, {2, 1}, {1, 1}, {2, 2}};
for (const auto& p : s) {
    std::cout << p.x << ", " << p.y << std::endl;
}

輸出結果為:

1, 1
1, 2
2, 1
2, 2

初始化的捕獲列表(Init-Capture):可以在lambda表達式的捕獲列表中進行初始化,例如:

int x = 1;
auto lambda = [value = x * 2]() {  // 在捕獲列表中初始化變量value
    std::cout << value << std::endl;
};
lambda();  // 調用lambda表達式

consteval函數:可以在編譯期計算表達式的值,例如:

consteval int get_value() { return 42; }  // 定義一個在編譯期計算的函數
std::array<int, get_value()> arr;  // 在編譯期創建一個大小為42的數組

模塊(Modules):可以使用模塊來管理和組織代碼,替代傳統的頭文件包含方式,例如:

// 定義一個模塊
module my_module;
export void foo() {
    std::cout << "hello, world!" << std::endl;
}
 
// 使用模塊
import my_module;
int main() {
    foo();  // 調用函數foo
    return 0;
}

到此,關于“C++11、C++14、C++17、C++20常用新特性有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

高州市| 丹凤县| 通辽市| 涪陵区| 信丰县| 镇巴县| 湖北省| 宿州市| 延庆县| 壤塘县| 攀枝花市| 建瓯市| 陵川县| 和平区| 鱼台县| 抚顺市| 丰都县| 康乐县| 即墨市| 蕉岭县| 潞西市| 寿阳县| 开鲁县| 元江| 瓦房店市| 西华县| 茶陵县| 新邵县| 望城县| 玉山县| 锡林郭勒盟| 阜新市| 台北县| 湖北省| 铁岭县| 乃东县| 义乌市| 孟连| 湘阴县| 扶余县| 渭源县|