// // Created by light on 19-11-2. // #include #include #include #include #include #include using namespace std; // iterator stl_iterator.h里面的源码 使用auto template #if __cplusplus < 201103L inline typename reverse_iterator<_Iterator>::difference_type operator-(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) #else inline auto operator-(const reverse_iterator<_Iterator> &__x, const reverse_iterator<_Iterator> &__y) -> decltype(__x.base() - __y.base()) #endif { return __y.base() - __x.base(); } // auto 关键字(c++11) 语法糖 // for 循环 ranged-base for class C { public: explicit C(const string &s) : mystr(s) { } friend ostream &operator<<(ostream out, const C &c) { out << c.mystr << endl; } private: string mystr; }; int main() { auto i = 42; // 编译器具备实参推导 auto ll1 = [](int x) -> int { return x + 10; }; // lambda 匿名函数 function ll = [](int x) -> int { return x + 10; }; cout << ll(10) << endl; list l{1, 2, 3}; list::iterator iterator; iterator = find(l.begin(), l.end(), 10); auto ite = find(l.begin(), l.end(), 11); // auto 关键字 vector vec; //=====================range-based for statement========================= // (1) for (auto elem:vec) // pass by value cout << elem << endl; // c++2.0 之前 (2) 编译器会把(1)转换为(2)或(3) for (auto _pos = l.begin(), _end = l.end(); _pos != _end; ++_pos) cout << *_pos << " "; cout << endl; // (3) // c++2.0之后 全局函数begin(container)与end(container) 可以接受容器 for (auto _pos = begin(l), _end = end(l); _pos != _end; ++_pos) cout << *_pos << " "; cout << endl; // (4) for (auto &elem:vec) // pass by reference elem *= 3; // (5) 编译器会把(4)转换为(5) for (auto _pos = l.begin(), _end = l.end(); _pos != _end; ++_pos) { auto &elem = *_pos; elem *= 3; } cout << endl; vector vs = {"hello", "world"}; // 加了explicit就不能转了 error // for (const C &elem:vs) { // } // auto 不利:降低代码可读性、可能得不到你预想的类型、配合decltype有意想不到的结果 // auto可能得不到你预想的类型,如vector[]的返回类型。 vector v(true); auto var = v.at(0); cout<< typeid(var).name()<