溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++14有哪些新特性

發(fā)布時(shí)間:2021-10-28 14:39:08 來源:億速云 閱讀:355 作者:iii 欄目:編程語言

這篇文章主要講解了“C++14有哪些新特性”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C++14有哪些新特性”吧!

「函數(shù)返回值類型推導(dǎo)」

C++14對(duì)函數(shù)返回類型推導(dǎo)規(guī)則做了優(yōu)化,先看一段代碼:

#include <iostream>  using namespace std;  auto func(int i) {     return i;  }  int main() {     cout << func(4) << endl;     return 0;  }

使用C++11編譯:

~/test$ g++ test.cc -std=c++11  test.cc:5:16: error: &lsquo;func&rsquo; function uses &lsquo;auto&rsquo; type specifier without trailing return type  auto func(int i) {                 ^  test.cc:5:16: note: deduced return type only available with -std=c++14 or -std=gnu++14

上面的代碼使用C++11是不能通過編譯的,通過編譯器輸出的信息也可以看見這個(gè)特性需要到C++14才被支持。

返回值類型推導(dǎo)也可以用在模板中:

#include <iostream>  using namespace std;  template<typename T> auto func(T t) { return t; }  int main() {    cout << func(4) << endl;     cout << func(3.4) << endl;     return 0;  }

注意:

函數(shù)內(nèi)如果有多個(gè)return語句,它們必須返回相同的類型,否則編譯失敗

auto func(bool flag) {     if (flag) return 1;     else return 2.3; // error  }  // inconsistent deduction for auto return type: &lsquo;int&rsquo; and then &lsquo;double&rsquo;

如果return語句返回初始化列表,返回值類型推導(dǎo)也會(huì)失敗

auto func() {     return {1, 2, 3}; // error returning initializer list  }

如果函數(shù)是虛函數(shù),不能使用返回值類型推導(dǎo)

struct A {  // error: virtual function cannot have deduced return type  virtual auto func() { return 1; }  }

返回類型推導(dǎo)可以用在前向聲明中,但是在使用它們之前,翻譯單元中必須能夠得到函數(shù)定義

auto f();               // declared, not yet defined  auto f() { return 42; } // defined, return type is int  int main() {  cout << f() << endl;  }

返回類型推導(dǎo)可以用在遞歸函數(shù)中,但是遞歸調(diào)用必須以至少一個(gè)返回語句作為先導(dǎo),以便編譯器推導(dǎo)出返回類型。

auto sum(int i) {     if (i == 1)         return i;              // return int     else         return sum(i - 1) + i; // ok  }

lambda參數(shù)auto

在C++11中,lambda表達(dá)式參數(shù)需要使用具體的類型聲明:

auto f = [] (int a) { return a; }

在C++14中,對(duì)此進(jìn)行優(yōu)化,lambda表達(dá)式參數(shù)可以直接是auto:

auto f = [] (auto a) { return a; };  cout << f(1) << endl;  cout << f(2.3f) << endl;

變量模板

C++14支持變量模板:

template<class T>  constexpr T pi = T(3.1415926535897932385L);  int main() {     cout << pi<int> << endl; // 3     cout << pi<double> << endl; // 3.14159     return 0;  }

別名模板

C++14也支持別名模板:

template<typename T, typename U>  struct A {     T t;     U u;  };  template<typename T>  using B = A<T, int>;  int main() {     B<double> b;     b.t = 10;     b.u = 20;     cout << b.t << endl;     cout << b.u << endl;     return 0;  }

constexpr的限制

C++14相較于C++11對(duì)constexpr減少了一些限制:

C++11中constexpr函數(shù)可以使用遞歸,在C++14中可以使用局部變量和循環(huán)

constexpr int factorial(int n) { // C++14 和 C++11均可     return n <= 1 ? 1 : (n * factorial(n - 1));  }

在C++14中可以這樣做:

constexpr int factorial(int n) { // C++11中不可,C++14中可以     int ret = 0;     for (int i = 0; i < n; ++i) {         ret += i;    }     return ret;  }

C++11中constexpr函數(shù)必須必須把所有東西都放在一個(gè)單獨(dú)的return語句中,而constexpr則無此限制

constexpr int func(bool flag) { // C++14 和 C++11均可     return 0;  }

在C++14中可以這樣:

constexpr int func(bool flag) { // C++11中不可,C++14中可以     if (flag) return 1;     else return 0;  }

[[deprecated]]標(biāo)記

C++14中增加了deprecated標(biāo)記,修飾類、變、函數(shù)等,當(dāng)程序中使用到了被其修飾的代碼時(shí),編譯時(shí)被產(chǎn)生警告,用戶提示開發(fā)者該標(biāo)記修飾的內(nèi)容將來可能會(huì)被丟棄,盡量不要使用。

struct [[deprecated]] A { };  int main() {      A a;      return 0;  }

當(dāng)編譯時(shí),會(huì)出現(xiàn)如下警告:

~/test$ g++ test.cc -std=c++14  test.cc: In function &lsquo;int main()&rsquo;:  test.cc:11:7: warning: &lsquo;A&rsquo; is deprecated [-Wdeprecated-declarations]       A a;         ^  test.cc:6:23: note: declared here   struct [[deprecated]] A {

二進(jìn)制字面量與整形字面量分隔符

C++14引入了二進(jìn)制字面量,也引入了分隔符,防止看起來眼花哈~

int a = 0b0001'0011'1010;  double b = 3.14'1234'1234'1234;

std::make_unique

我們都知道C++11中有std::make_shared,卻沒有std::make_unique,在C++14已經(jīng)改善。

struct A {};  std::unique_ptr<A> ptr = std::make_unique<A>();

std::shared_timed_mutex與std::shared_lock

C++14通過std::shared_timed_mutex和std::shared_lock來實(shí)現(xiàn)讀寫鎖,保證多個(gè)線程可以同時(shí)讀,但是寫線程必須獨(dú)立運(yùn)行,寫操作不可以同時(shí)和讀操作一起進(jìn)行。

實(shí)現(xiàn)方式如下:

struct ThreadSafe {      mutable std::shared_timed_mutex mutex_;      int value_;     ThreadSafe() {          value_ = 0;      }      int get() const {          std::shared_lock<std::shared_timed_mutex> loc(mutex_);          return value_;      }      void increase() {          std::unique_lock<std::shared_timed_mutex> lock(mutex_);          value_ += 1;      }  };

為什么是timed的鎖呢,因?yàn)榭梢詭С瑫r(shí)時(shí)間,具體可以自行查詢相關(guān)資料哈,網(wǎng)上有很多。

std::integer_sequence

template<typename T, T... ints>  void print_sequence(std::integer_sequence<T, ints...> int_seq)  {      std::cout << "The sequence of size " << int_seq.size() << ": ";      ((std::cout << ints << ' '), ...);      std::cout << '\n';  }  int main() {      print_sequence(std::integer_sequence<int, 9, 2, 5, 1, 9, 1, 6>{});      return 0;  }  輸出:7 9 2 5 1 9 1 6

std::integer_sequence和std::tuple的配合使用:

template <std::size_t... Is, typename F, typename T>  auto map_filter_tuple(F f, T& t) {      return std::make_tuple(f(std::get<Is>(t))...);  } template <std::size_t... Is, typename F, typename T>  auto map_filter_tuple(std::index_sequence<Is...>, F f, T& t) {      return std::make_tuple(f(std::get<Is>(t))...);  }  template <typename S, typename F, typename T>  auto map_filter_tuple(F&& f, T& t) {      return map_filter_tuple(S{}, std::forward<F>(f), t);  }

std::exchange

直接看代碼吧:

int main() {      std::vector<int> v;      std::exchange(v, {1,2,3,4});      cout << v.size() << endl;      for (int a : v) {          cout << a << " ";      }      return 0;  }

看樣子貌似和std::swap作用相同,那它倆有什么區(qū)別呢?

可以看下exchange的實(shí)現(xiàn):

template<class T, class U = T>  constexpr T exchange(T& obj, U&& new_value) {      T old_value = std::move(obj);      obj = std::forward<U>(new_value);      return old_value;  }

可以看見new_value的值給了obj,而沒有對(duì)new_value賦值,這里相信您已經(jīng)知道了它和swap的區(qū)別了吧!

std::quoted

C++14引入std::quoted用于給字符串添加雙引號(hào),直接看代碼:

int main() {      string str = "hello world";      cout << str << endl;     cout << std::quoted(str) << endl;      return 0;  }

編譯&輸出:

~/test$ g++ test.cc -std=c++14  ~/test$ ./a.out  hello world  "hello world"

感謝各位的閱讀,以上就是“C++14有哪些新特性”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)C++14有哪些新特性這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI