-std = c ++ 11を有効にしてg ++ 4.7(後のスナップショットの1つ)で遊んでいました。私は既存のコードベースのいくつかをコンパイルしようとしましたが、失敗した1つのケースはやや混乱します。
誰かが何が起こっているのか説明していただければ幸いです。
コードは次のとおりです。
#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が(1)の場合として使用されることを意図していることは理解していますが(タイプを指定する場合は、(3)を使用した方がよいでしょう)、この場合に失敗する理由がわかりません。
正確なエラーは次のとおりです。
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>&&’
繰り返しますが、ここでの質問は「何が起こっているのか」です。テンプレートの仕様を削除することで問題を解決できることはわかっていますが、ここで何が失敗しているのかを知りたいだけです。
- g ++ 4.4は、このコードを問題なくコンパイルします。
- -std = c ++ 11を削除しても、問題なくコードでコンパイルできます。
std::vector
建設。少なくともこれは、セマンティクスのサイレントな変更ではなく、コンパイラエラーを生成します。