C++11新特性之auto的運用。本站提示廣大學習愛好者:(C++11新特性之auto的運用)文章只能為提供參考,不一定能成為您想要的結果。以下是C++11新特性之auto的運用正文
前言
C++是一種強類型言語,聲明變量時必需明白指出其類型。但是,在理論中,優勢我們很難推斷出某個表達式的值的類型,尤其是隨著模板類型的呈現,要想弄明白某些復雜表達式的前往類型就變得愈加困難。為理解決這個問題,C++11中引入的auto次要有兩種用處:自動類型推斷和前往值占位。auto在C++98中的標識暫時變量的語義,由於運用極少且多余,在C++11中已被刪除。前後兩個規范的auto,完全是兩個概念。
一、自動類型推斷
auto自動類型推斷,用於從初始化表達式中推斷出變量的數據類型。經過auto的自動類型推斷,可以大大簡化我們的編程任務。上面是一些運用auto的例子。
#include <vector> #include <map> using namespace std; int main(int argc, char *argv[], char *env[]) { // auto a; // 錯誤,沒有初始化表達式,無法推斷出a的類型 // auto int a = 10; // 錯誤,auto暫時變量的語義在C++11中已不存在, 這是舊規范的用法。 // 1. 自動協助推導類型 auto a = 10; auto c = 'A'; auto s("hello"); // 2. 類型冗長 map<int, map<int,int> > map_; map<int, map<int,int>>::const_iterator itr1 = map_.begin(); const auto itr2 = map_.begin(); auto ptr = []() { std::cout << "hello world" << std::endl; }; return 0; }; // 3. 運用模板技術時,假如某個變量的類型依賴於模板參數, // 不運用auto將很難確定變量的類型(運用auto後,將由編譯器自動停止確定)。 template <class T, class U> void Multiply(T t, U u) { auto v = t * u; }
二、前往值占位
template <typename T1, typename T2> auto compose(T1 t1, T2 t2) -> decltype(t1 + t2) { return t1+t2; } auto v = compose(2, 3.14); // v's type is double
三、運用留意事項
1、我們可以運用valatile
,pointer(*)
,reference(&)
,rvalue reference(&&)
來修飾auto
auto k = 5; auto* pK = new auto(k); auto** ppK = new auto(&k); const auto n = 6;
2、用auto聲明的變量必需初始化
auto m; // m should be intialized
3、auto不能與其他類型組合連用
auto int p; // 這是舊auto的做法。
4、函數和模板參數不能被聲明為auto
void MyFunction(auto parameter){} // no auto as method argument template<auto T> // utter nonsense - not allowed void Fun(T t){}
5、定義在堆上的變量,運用了auto的表達式必需被初始化
int* p = new auto(0); //fine int* pp = new auto(); // should be initialized auto x = new auto(); // Hmmm ... no intializer auto* y = new auto(9); // Fine. Here y is a int* auto z = new auto(9); //Fine. Here z is a int* (It is not just an int)
6、以為auto是一個占位符,並不是一個他自己的類型,因而不能用於類型轉換或其他一些操作,如sizeof和typeid
int value = 123; auto x2 = (auto)value; // no casting using auto auto x3 = static_cast<auto>(value); // same as above
7、定義在一個auto序列的變量必需一直推導成同一類型
auto x1 = 5, x2 = 5.0, x3='r'; // This is too much....we cannot combine like this
8、auto不能自動推導成CV-qualifiers(constant & volatile qualifiers),除非被聲明為援用類型
const int i = 99; auto j = i; // j is int, rather than const int j = 100 // Fine. As j is not constant // Now let us try to have reference auto& k = i; // Now k is const int& k = 100; // Error. k is constant // Similarly with volatile qualifer
9、auto會退步成指向數組的指針,除非被聲明為援用
int a[9]; auto j = a; cout<<typeid(j).name()<<endl; // This will print int* auto& k = a; cout<<typeid(k).name()<<endl; // This will print int [9]
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家學習或許運用C++能有一定的協助,假如有疑問大家可以留言交流。