#include <vector>
#include <iostream>
using namespace std;
int main()
{
vector<int> coll;
decltype(std::begin(std::declval<vector<int>>()))
pos_1 = coll.begin();
auto pos_2 = coll.begin();
cout << typeid(decltype(pos_1)).name() << endl;
cout << typeid(decltype(pos_2)).name() << endl;
}
Derleyicim clang 4.0. çıktısı: anlamıBöyle bir durumda neden "std :: begin()" daima "const_iterator" döndürüyor?
class std::_Vector_const_iterator<class std::_Vector_val<struct std::_Simple_types<int> > > class std::_Vector_iterator<class std::_Vector_val<struct std::_Simple_types<int> > >
: pos_1 = pos_2;
ok, pos_2 = pos_1;
Tamam değil iken.
Böyle bir durumda neden yerine döndürür?
Benim tahminim sen geçici kullanılarak pos_1' 'tipini deducing çünkü çünkü öyle olduğunu. Sadece const referanslarına ve tüm bunların, const'ın oyuna girdiği yere bağlanırlar. – Borgleader