7
votes
4answers
221 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 communicati …
4
votes
3answers
100 views
Compose output streams
I'd like to compose two (or more) streams into one. My goal is that any output directed to cout, cerr, and clog also be outputted into a file, along with the stream. (For when thin …
8
votes
5answers
1k 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 an …
16
votes
8answers
2k 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 dev …
0
votes
1answer
67 views
proper way to read user input from command line in java
I was hoping to get some opinions regarding best practices and comments on the way I read user input from the command line. Is there a recommended way to do this, am I using the tr …
2
votes
10answers
1k views
how to output to console in C++/Windows
When using iostream in C++ on Linux, it displays the program output in the terminal, but in Windows, it just saves the output to a stdout.txt file. How can I, in Windows, make the …
1
vote
2answers
40 views
IOStreams and Multiple Encoding Types
Hello :)
I have an application that needs to be able to output in several different types of encoding, namely the CP_ACP code page, the CP_OEM code page, UTF-8, and UCS-2 on Windo …
0
votes
2answers
343 views
Using stringstream in place of string? - C++
I've been given a homework assignment to write a program in C++, but we're not allowed to use the string class. However, we are allowed to use the iostream library, including strin …
2
votes
4answers
140 views
Are large include files like iostream efficient? (C++)
Iostream, when all of the files it includes, the files that those include, and so on and so forth, adds up to about 3000 lines.
Consider the hello world program, which needs no mo …
2
votes
2answers
167 views
Are there binary memory streams in C++
Hello,
I usually use stringstream to write into in-memory string. Is there a way to write to a char buffer in binary mode? Consider the following code:
stringstream s;
s << …
1
vote
2answers
163 views
stringstream temporary ostream return problem
I'm creating a logger with the following sections:
// #define LOG(x) // for release mode
#define LOG(x) log(x)
log(const string& str);
log(const ostream& str);
With the …
1
vote
3answers
313 views
Alternative function in iostream.h for getch() of conio.h?
I'm trying to hold the screen on my output using the header file <iostream.h>, but I don't know any equivalent function to the getch() & clrscr() functions of <conio.h …
0
votes
3answers
248 views
Are standard output streams in C++ thread-safe (cout, cerr, clog)?
I know that there is no concept of threads in current C++, but this article is saying:
A typesafe, threadsafe, portable
logging mechanism
.....
The fprintf() functi …
3
votes
2answers
146 views
Issue using SocketConnection with a Blackberry using MDS
I am currently writing an app on the Blackberry to do a simple send and receive of some raw data to another TCP based device on my network. I am having the same problem in the Blac …
1
vote
1answer
81 views
Sharing output streams through a JNI interface
I am writing a Java application that uses a C++ library through a JNI interface. The C++ library creates objects of type Foo, which are duly passed up through JNI to Java.
Suppos …
