-Std = c ++ 11 etkinken g ++ 4.7 (sonraki anlık görüntülerden biri) ile oynuyordum. Mevcut kod tabanımdan bazılarını derlemeye çalıştım ve başarısız olan bir durum biraz kafamı karıştırdı.
Biri neler olduğunu açıklayabilirse minnettar olurum.
İşte kod:
#include <utility>
#include <iostream>
#include <vector>
#include <string>
int main ( )
{
std::string s = "abc";
// 1 ok
std::pair < std::string, int > a = std::make_pair ( s, 7 );
// 2 error on the next line
std::pair < std::string, int > b = std::make_pair < std::string, int > ( s, 7 );
// 3 ok
std::pair < std::string, int > d = std::pair < std::string, int > ( s, 7 );
return 0;
}
Make_pair'in demek olduğunu anlıyorum (1) durum olarak kullanılması (türleri belirtirsem, (3) ' de kullanabilirim), ancak bu durumda neden başarısız olduğunu anlamıyorum.
Kesin hata şudur:
test.cpp: In function ‘int main()’:
test.cpp:11:83: error: no matching function for call to ‘make_pair(std::string&, int)’
test.cpp:11:83: note: candidate is:
In file included from /gcc4.7/usr/local/lib/gcc/i686-pc-linux-gnu/4.7.0/../../../../include/c++/4.7.0/utility:72:0,
from test.cpp:1:
/gcc4.7/usr/local/lib/gcc/i686-pc-linux-gnu/4.7.0/../../../../include/c++/4.7.0/bits/stl_pair.h:274:5:
note: template<class _T1, class _T2> constexpr std::pair<typename std::__decay_and_strip<_T1>::__type, typename std::__decay_and_strip<_T2>::__type> std::make_pair(_T1&&, _T2&&)
/gcc4.7/usr/local/lib/gcc/i686-pc-linux-gnu/4.7.0/../../../../include/c++/4.7.0/bits/stl_pair.h:274:5:
note: template argument deduction/substitution failed:
test.cpp:11:83: note: cannot convert ‘s’ (type ‘std::string {aka std::basic_string<char>}’) to type ‘std::basic_string<char>&&’
Yine, buradaki soru sadece "neler oluyor?" Şablon özelliğini kaldırarak sorunu çözebileceğimi biliyorum, ancak sadece burada kapakların altında neyin başarısız olduğunu bilmek istiyorum.
- g ++ 4.4 bu kodu sorunsuz bir şekilde derler.
- -Std = c ++ 11'in kaldırılması da sorunsuz bir şekilde kodla derlenir.
std::vector
yapı . En azından bu bir derleyici hatası verir ve anlambilimde sessiz bir değişiklik olmaz.