GNU C++ 11, Compilation Error to_string() + Tutorial

Revision en6, by sbakic, 2016-11-30 18:45:37

According to this, we can use to_string() only with compiler higher than GCC 4.8.0 and with C++ 11.

But I submitted with GNU C++ 11 4.9.2 (12720137) and got this error.

I know there are other solutions to convert int to string, but I want to know what is problem with this one. I am using compiler GNU C++ 11 5.1.0 and it's working on my computer. Thanks.

UPD: Tutorial

This will be a quick tutorial about stringstream, istringstream and ostringstream. It may be usefull for someone.

istream and ostream: Interfaces to streaming data (files, sockets, etc.).

istringstream: An istream that wraps a string and offers its contents.

ostringstream: An ostream that saves the content written to it as a string.

stringstream: An iostream can be used to both read strings and write data into strings.

The inheritance relationships between the classes

Difference between stringstream and ostringstream

Classes stringstream and ostringstream pass different flags to the stringbuf. The stringbuf of an ostringstream does not support reading. The way to extract characters from an ostringstream is by using the std :: ostringstream :: str() function. Using 'just' istringstream or ostringstream better expresses your intent and gives you some checking against silly mistakes such as accidental use of << vs >>. A stringstream is somewhat larger, and might have slightly lower performance; multiple inheritance can require an adjustment to the vtable pointer.

Tags to_string(), compilation errorr, c++ 11, istringstream, ostringstream, stringstream, tutorial

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en6 English sbakic 2016-11-30 18:45:37 66
en5 English sbakic 2015-08-28 02:07:03 1345 Tiny change: 'r. Thanks.' -
en4 English sbakic 2015-08-27 17:22:07 0 (published)
en3 English sbakic 2015-08-27 17:13:16 0 Tiny change: 'nI know that are other' -> 'nI know there are other'
en2 English sbakic 2015-08-27 17:12:45 5 Tiny change: 'nI know that are other' -> 'nI know there are other' (saved to drafts)
en1 English sbakic 2015-08-27 17:10:06 587 Initial revision (published)