Tagged Questions
c++ iostream library is an object-oriented library that provides input and output functionality using streams
59
votes
5answers
2k views
Does the C++ standard mandate poor performance for iostreams, or am I just dealing with a poor implementation? [closed]
Every time I mention slow performance of C++ standard library iostreams, I get met with a wave of disbelief. Yet I have profiler results showing large amounts of time spent in iostream library code ...
57
votes
10answers
14k views
C++: “std::endl” vs “\n”
Many C++ books contain example code like this...
std::cout << "Test line" << std::endl;
...so I've always done that too. But I've seen a lot of code from working developers like this ...
54
votes
8answers
2k views
Who architected / designed C++'s IOStreams, and would it still be considered well-designed by today's standards?
First off, it may seem that I'm asking for subjective opinions, but that's not what I'm after. I'd love to hear some well-grounded arguments on this topic.
In the hope of getting some insight into ...
41
votes
12answers
2k views
Can you explain the concept of streams?
I understand that a stream is a representation of a sequence of bytes. Each stream provides means for reading and writing bytes to its given backing store. But what is the point of the stream? Why ...
27
votes
3answers
4k views
Why do C++ streams use char instead of unsigned char?
I've always wondered why the C++ Standard library has instantiated basic_[io]stream and all its variants using the char type instead of the unsigned char type. char means (depending on whether it is ...
23
votes
8answers
21k views
How do I print a double value with full precision using cout?
So I've gotten the answer to my last question (I don't know why I didn't think of that). I was printing a double using cout that got rounded when I wasn't expecting it. How can I make cout print a ...
23
votes
3answers
12k views
How to properly overload the << operator for an ostream?
I am writing a small matrix library in C++ for matrix operations. However my compiler complaints, where before it did not. This code was left on a shelf for 6 months and in between I upgraded my ...
21
votes
5answers
1k views
What does the “c” mean in cout, cin, cerr and clog?
What does the "c" mean in the cout, cin, cerr and clog names?
I would say char but I haven't found anything to confirm it.
20
votes
4answers
393 views
Typo with “cout < myint”. Why does it work?
I have this code and I searched for hours why it fails to print my income
int const income = 0;
std::cout << "I'm sorry, your income is: " < income;
Until I found I missed to write ...
18
votes
14answers
2k views
Which I/O library do you use in your C++ code?
In new C++ code, I tend to use the C++ iostream library instead of the C stdio library.
I've noticed some programmers seem to stick to stdio, insisting that it's more portable.
Is this really the ...
17
votes
6answers
12k views
Java IO implementation of unix/linux “tail -f”
I'm wondering what techniques and/or library to use to implement the functionality of the linux command "tail -f ". I'm essentially looking for a drop in add-on/replacement for java.io.FileReader. ...
16
votes
8answers
4k views
Output unicode strings in Windows console app
Hi I was trying to output unicode string to a console with iostreams and failed.
I found this: Using unicode font in c++ console app and this snippet works.
SetConsoleOutputCP(CP_UTF8);
wchar_t ...
16
votes
7answers
946 views
Does anyone actually use stream extraction operators?
I've written tons of operator<<(std::ostream &, const T &) functions -- they're incredibly useful.
I've never written an operator>>(std::istream &, T &) function in real ...
14
votes
2answers
330 views
What serious alternatives exist for the IOStream library? (besides cstdio)
I'm looking for a library which operates similar to iostreams, in that it performs conversions, and allows writing to memory buffers, files, and the console. However, I'd like something type safe, as ...
13
votes
5answers
3k views
Reading files larger than 4GB using c++ stl
A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a decent answer as to why it ...
13
votes
5answers
28k views
Reading from text file until EOF repeats last line
The following C++ code uses a ifstream object to read integers from a text file (which has one number per line) until it hits EOF. Why does it read the integer on the last line twice? How to fix this?
...
12
votes
1answer
126 views
Why does the rvalue overload of `operator<<` for `basic_ostream` return an lvalue reference?
ยง27.7.3.9 defines the following overload for operator<<:
template <class charT, class traits, class T>
basic_ostream<charT, traits>&
operator<<(basic_ostream<charT, ...
12
votes
2answers
205 views
Why is the address of this volatile variable always at 1?
I wanted to inspect the address of my variable
volatile int clock;
cout << &clock;
But it always says that x is at address 1. Am i doing something wrong??
11
votes
7answers
2k views
Printing double without losing precision
So how do you print a double to a stream so that when it is read in you don't lose precision?
I tried:
std::stringstream ss;
double v = 0.1 * 0.1;
ss << ...
10
votes
2answers
343 views
Why is iostream::eof inside a loop condition considered wrong?
I just found a comment in this answer saying that using iostream::eof in a loop condition is "almost certainly wrong". I generally use something like while(cin>>n) - which I guess implicitly ...
10
votes
4answers
2k views
how to read numbers from an ascii file (C++)
i need to read in data files which look like this:
* SZA: 10.00
2.648 2.648 2.648 2.648 2.648 2.648 2.648 2.649 2.650 2.650
2.652 2.653 2.652 2.653 2.654 2.654 2.654 2.654 2.654 ...
9
votes
2answers
254 views
NaN ASCII I/O with Visual C++
I want to read and write NaN values from/into text files using iostream and Visual C++. When writing a NaN value, i get 1.#QNAN. But, reading it back outputs 1.0 .
float nan = ...
9
votes
6answers
219 views
Overload operator<< (unsigned char typedef as byte)
I want to overload (hijack?) ostream and basic_ostream<unsigned char> so that it stops attempting to display an octet (unsigned char) as a printable character.
I've been living with cout and ...
9
votes
1answer
532 views
What is the C++ iostream endl fiasco?
I was listening to a google talk by Andrei Alexandrescu on the D programming language when he threw out a one liner about the "endl" fiasco. I just thought endl was the preferred way to signify the ...
9
votes
1answer
401 views
C++ iostream: What guarantees are there on interleaved reads and writes?
When working with a C++ std::iostream (for example, std::fstream or std::stringstream, does the standard guarantee anything about the relationships between reads and writes performed on the same ...
9
votes
1answer
284 views
Will C++0x RValue references or other features will have an impact on streams performance?
Lot of profiling shows that C++ streams are not the best way to performe file or text string manipulation when performance (speed) is required.
Still, the standard streams are a good way to keep ...
9
votes
1answer
153 views
streaming hexadecimal numbers with A-F (not a-f)
This is my second question during the last 10 minutes, sorry for that.
Is it possible to make ostream output hexadecimal numbers with A-F and not a-f?
int x = 0xABC;
std::cout << std::hex ...
9
votes
2answers
3k views
How to create a boost ssl iostream?
I'm adding HTTPS support to code that does input and output using boost tcp::iostream (acting as an HTTP server).
I've found examples (and have a working toy HTTPS server) that do SSL input/output ...
9
votes
3answers
209 views
Why do I need to flush my I/O stream to get the correct result?
Why the code below does not work? I mean, it shows all kinds of weird characters on console output.
#include <stdio.h>
char mybuffer[80];
int main()
{
FILE * pFile;
pFile = fopen ...
9
votes
5answers
1k views
Overload handling of std::endl?
I want to define a class MyStream so that:
MyStream myStream;
myStream << 1 << 2 << 3 << std::endl << 5 << 6 << std::endl << 7 << 8 << ...
9
votes
8answers
5k views
Kill a blocked Boost::Thread
I am writing an application which blocks on input from two istreams.
Reading from either istream is a synchronous (blocking) call, so, I decided to create two Boost::threads to do the reading.
...
8
votes
2answers
141 views
What exactly is streambuf? How do I use it?
I'm trying to learn a bit more about how I/O streams work in C++, and I'm really confused at when to use what.
What exactly is a streambuf?
When do I use a streambuf, as compared to a string, an ...
8
votes
4answers
247 views
How can I override an C++ standard-library class function?
How can I override a C++ standard-library class function? In my application, I use ofstream objects in many different places of code. And now I want to open files in a different permission mode in ...
8
votes
5answers
237 views
Custom stream manipulator for streaming integers in any base
I can make an std::ostream object output integer numbers in hex, for example
std::cout << std::hex << 0xabc; //prints `abc`, not the base-10 representation
Is there any manipulator that ...
8
votes
4answers
172 views
Disabling pointer output in C++ streams?
If you hand any pointer to a C++ stream, it's address will be put into the output. (Obviously unless there's a more specific output handler.)
void* px = NULL;
const char* ps = "Test";
FooType* pf = ...
8
votes
3answers
334 views
Why can't I instantiate operator<<(ostream&, vector<T>&) with T=vector<int>?
In thinking about C++ iterator question, I wrote this sample program:
#include <vector>
#include <iostream>
#include <iterator>
#include <algorithm>
template <class T>
...
8
votes
2answers
687 views
How to get IOStream to perform better?
Most previously C-users prefer to use the printf / scanf family of functions even in C++.
Although I admit that I find the interface way better (especially POSIX-like format and localization), it ...
8
votes
9answers
526 views
Should I switch to C++ I/O streams?
I've never been much to use C++ I/O streams and have always opted for what I know.
i.e. the printf functions.
I know there are some benefits to using I/O streams, but I'm looking for some tips
from ...
8
votes
1answer
152 views
operator precedence (void* before bool?)
When answering this question I made some research which really confuses me.
I noticed that two ifstreams that succesfully open are not equal but two ifstreams that fail are.
At first i checked ...
8
votes
5answers
1k views
Why are C++ STL iostreams not “exception friendly”?
I'm used to the Delphi VCL Framework, where TStreams throw exceptions on errors (e.g file not found, disk full). I'm porting some code to use C++ STL instead, and have been caught out by iostreams NOT ...
8
votes
2answers
395 views
overriding ctype<wchar_t>
I'm writing a lambda calculus interpreter for fun and practice. I got iostreams to properly tokenize identifiers by adding a ctype facet which defines punctuation as whitespace:
struct token_ctype : ...
8
votes
3answers
740 views
When should I concern myself with std::iostream::sentry?
Online references have rather brief and vague descriptions on the purpose of std::iostream::sentry. When should I concern myself with this little critter? If it's only intended to be used internally, ...
8
votes
6answers
730 views
When is it good to use c++ iostreams over ReadFile, WriteFile, fprintf, etc …?
I find that it is tremendously easier to use streams in c++ instead of windows functions like ReadFile, WriteFile, etc or even fprintf. When is it not good to use streams? When is it good to use ...
8
votes
3answers
1k views
C++ fstream << and >> operators with binary data
I've always read and been told that when dealing with binary files that one should use read() and write() as opposed to the << and >> operators as they are meant for use with formatted ...
8
votes
4answers
673 views
Is there a way to get non-locking stream insertion/extraction on basic_iostream in Windows?
I'm a C++ developer who has primarily programmed on Solaris and Linux until recently, when I was forced to create an application targeted to Windows.
I've been using a communication design based on ...
8
votes
3answers
1k views
Using boost in WDK build environment for applications?
I am using the Windows Driver Kit (WinDDK 6001.18001) to build my userspace application rather than Visual Studio 2005. I am taking this approach because we also have to build driver components, so ...
7
votes
2answers
116 views
basic_streambuf::seekoff what should be returned when ios_base::in | ios_base::out is specified?
27.6.3.4.2 Buffer management and positioning
pos_type seekoff(off_type off, ios_base::seekdir way,
ios_base::openmode which = ios_base::in | ios_base::out);
Effects: Alters the stream ...
7
votes
2answers
133 views
Is it OK to use iostreams with int as character-type?
When trying to come up with an answer to this question, I wrote this little test-program:
#include <iostream>
#include <fstream>
#include <vector>
#include <iterator>
#include ...
7
votes
5answers
919 views
How to read formatted data in C++?
I have a formatted data like the following:
Words 5
AnotherWord 4
SomeWord 6
It's in a text file and I'm using ifstream to read it, but how do I separate the number and the word? ...
7
votes
5answers
1k views
C++ read from istream until newline (but not whitespace)
I have a std::istream which refers to matrix data, something like:
0.0 1.0 2.0
3.0 4.0 5.0
Now, in order to assess the number of columns I would like to have some code like:
...