No matching constructor for initalization of 'ostream_iterator<int>'

人盡茶涼 提交于 2019-11-29 10:52:31

The ostream_iterator class definition looks like:

template< class T,
  class CharT = char,
  class Traits = std::char_traits<charT>>
class ostream_iterator /*...*/

whereas the respective constructor is declared as:

ostream_iterator(ostream_type& buffer, const CharT* delim)

Since the second template argument of an ostream_iterator is required to be of character type you cannot simply replace it with int.

If you ommit the second template parameter you can plug in a string literal of type char const *:

std::copy(sentence1.begin(), sentence1.end(), std::ostream_iterator<int>(cout, ","));

If C++11 is available to you then

int c = 5;
for ( auto v : sentence1 ) std::cout << v << c;

is another way of doing what you deserve and it might be suitable, too. The advantage is, that operator<< is more flexible than an argument of type "pointer to char type".

ostream_iterator constructor takes const CharT* delim as second parameter:

ostream_iterator(ostream_type& stream, const CharT* delim) (1)

ostream_iterator(ostream_type& stream) (2)

To make your code work, you need to pass in a string:

std::copy(sentence1.begin(), sentence1.end(), std::ostream_iterator<int>(cout, "1"));
//                                                                             ^^^^

The std::ostream_iterator takes a string as the second parameter to the constructor. This is the string that will be output after each integer in the sequence.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!