1

std::copyを使用してコンテンツを出力するようにこれを適応させようとしていましstd::vector<std::wstring>たが、そのコードがどのようにうまく機能しているか理解できず、コンパイルできません。コードはどうあるべきですか?

ロブの例を使用しましたが、うまくいきません:

std::vector<std::wstring> keys = ...;
std::copy(keys.begin(), keys.end(), std::ostream_iterator<std::wstring>(std::wcout, " "));

エラーが発生します:

1>error C2665: 'std::ostream_iterator<_Ty>::ostream_iterator' : none of the 2 overloads could convert all the argument types
1>        with
1>        [
1>            _Ty=std::wstring
1>        ]
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\iterator(300): could be 'std::ostream_iterator<_Ty>::ostream_iterator(std::basic_ostream<_Elem,_Traits> &,const _Elem *)'
1>        with
1>        [
1>            _Ty=std::wstring,
1>            _Elem=char,
1>            _Traits=std::char_traits<char>
1>        ]
1>        while trying to match the argument list '(std::wostream, const char [2])'

which is of type_Elem=charを使用すると、なぜ通知されるのですか?wcoutwostream

4

1 に答える 1

5

wstring, wchar_tテンプレート パラメーターとして、およびwcout出力ストリームとして使用する必要があります。

std::copy(v.begin(), 
          v.end(), 
          std::ostream_iterator<std::wstring, wchar_t>(std::wcout, L"\n"));

テストプログラム:

#include <vector>
#include <string>
#include <iostream>
#include <iterator>

int main () {
  std::vector<std::wstring> v;
  v.push_back(L"Hello");
  v.push_back(L"World");
  std::copy(v.begin(),
            v.end(),
            std::ostream_iterator<std::wstring, wchar_t>(std::wcout, L"\n"));
}
于 2013-09-12T15:04:58.377 に答える