The C++ iostream library is an object-oriented library that provides input and output functionality using streams. The iostreams classes support type-safe I/O of built-in types and can be extended to support user-defined types by overloading the >> and
0
votes
1answer
66 views
C# - StreamReader/StreamWriter - File used by another process
First off, I made sure that I dispose and close everything (both reader and writer) properly. The method I'm doing is that I'm using the using statement; and before this, I manually used the dispose ...
1
vote
1answer
37 views
How to implement "press to enter"in c++
any idea on how to implement a "press any key to move on" in c++?
Based on my understanding, for any input stream function, it all requires users to hit "enter" to read.
But how do I make it like ...
0
votes
1answer
39 views
Combination of std::ios::openmode to avoid modifications of an existing file?
Is there an available combination of std::ios::openmode to avoid modifications of an existing file and allow only the creation of a new one ?
6
votes
1answer
98 views
How to disable buffering on a stream?
In C, I can easily set a stream to unbuffered I/O:
FILE * f = fopen( "test", "r" );
setvbuf( f, (char *)NULL, _IONBF, 0 );
How would I achieve similarly unbuffered I/O using C++ IOStreams?
1
vote
1answer
36 views
Asking for an input file until it is correct in c++
I am trying to read a file in c++. I ask the filename to user, if file exists i open it but if it does not exist i keep asking until a valid filename is entered. But when user enters a wrong file ...
0
votes
2answers
56 views
Cannot include <IOStream> or it crashes
I am using eclipse with C++ and opengl. However in my program I cannot use #include or I get the following error The program file specified in the launch configuration does not exist ...
1
vote
2answers
54 views
Why use namespace if iostream is imported
I am beginner at C++, and I have recently been introduced to namespaces like std. However, if functions like cout and endl are defined in the iostream header file, why include the std namespace at ...
0
votes
1answer
23 views
Overload cout results in duplicate definition
I'm trying to overload the << operator on the ostream - class?
For some reason I'm overloading it twice, I can't seem to figure out why cause i have #ifndef in my header file.
matrix.h
...
1
vote
1answer
47 views
ostream.write writes extra bytes into buffer
I'm using ostream to serialize an object, but the write() method seems to write extra bytes into the buffer.
uint32_t id1=0x01;
uint32_t id2=0xdeadbeef;
std::stringstream sink;
...
1
vote
1answer
39 views
No matching function - ifstream open()
This is the part of the code with an error:
std::vector<int> loadNumbersFromFile(std::string name)
{
std::vector<int> numbers;
std::ifstream file;
file.open(name); // the ...
0
votes
0answers
118 views
File size computation benchmark: C two times slower than C++?
Consider the following code with 3 different versions of file size computation.
#include <iostream>
#include <cstdio>
#include <string>
#include <fstream>
inline long long ...
3
votes
2answers
75 views
Do I have to use #include <string> beside <iostream>?
I started learning C++ and I read a book which writes that I must use the <string> header file because the string type is not built directly into the compiler.
If I use the <iostream> I ...
0
votes
1answer
30 views
g++ segfault with iostream package
I have the following code in ClassName.h
#ifndef CLASSNAME_H
#define CLASSNAME_H
#include <iostream>
#endif
Compiling this as g++ Classname.h regardless of using flags produces the following ...
2
votes
2answers
30 views
iostream functions giving me error C2248
I am writing a very basic program that takes the contents of two files and adds them together in a third file. My code is as follows:
#include "std_lib_facilities.h"
string filea, fileb,
...
0
votes
1answer
74 views
What is a good way to traverse through a big file in c++
I have really big files, which contain data packages. The file itself is simply a really big string, and the packages are seperated with a string "PACK1.0".
Assuming "XXX" is data, a package looks ...
1
vote
1answer
76 views
how to know that no data available on boost::asio::ip::tcp::iostream?
I'm using boost::asio::ip::tcp::iostream to read binary data from TCP stream. I do this like that:
stream.read(reinterpret_cast<char*>(&packetSize), 4); // first 4 bytes is length
...
0
votes
1answer
24 views
Need some help understanding why wifstream buffer not being saved back to file
The following code does exactly what it's supposed to with one exception. The modified buffer content is not being save to the file. I have stepped through the code and I can see the buffer being ...
0
votes
1answer
56 views
Console output keeps crashing
Trying to solve this Problem.
I have written the code which looks like this:
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int i,j,n,t;
int main()
...
-2
votes
1answer
41 views
Unique pointer to stream
#include <memory>
#include <istream>
typedef std::unique_ptr<std::istream> myType;
class myClass{
myType myStream;
public:
myClass(myType a_stream){
myStream = ...
0
votes
2answers
56 views
derived basic_ostream: “using” keyword and ambiguous overload for operator <<
I have a derived basic_ostream class and an inline modifier (similar to setw). My stream class should also inherit all the operator << behavior from its parent. I get different compiler errors ...
0
votes
2answers
57 views
stream operators where lhs is not a std::iostream instance
I have a custom output class that has two std::ostream members that serve different purposes. Either stream is used depending upon how the output class is configured. In some instances, the two ...
-2
votes
2answers
88 views
C++ Compiler for Win 8 (64 bit) [closed]
I'm new to programming and so i need a c++ compiler for my windows 8 64 bit os which i can't find. I've tried so many compilers including codeblocks and dev C++.
And the second main problem is that i ...
0
votes
2answers
54 views
Issue with iostream.h on a C++ program [duplicate]
I need to execute some examples founded in this page:
http://www.chuidiang.com/clinux/ipcs/colas.php
The code for one of them is this one:
#include <iostream.h>
#include <sys/msg.h>
...
0
votes
1answer
30 views
Display numbers with padding and a fixed number of digits in C++
I'd like to display numbers using a padding (if necessary) and a fixed number of digits. For instance, given the following numbers:
48.3
0.3485
5.2
Display them like this:
48.30
00.35
05.20
I'm ...
0
votes
1answer
32 views
Testing that there are no more non-space characters in the stream
Suppose I am writing an interpreter, and one of its commands has the form
define variable
where variable may only be a lowercase latin letter.
Here's what I am doing. After having determined that ...
6
votes
1answer
117 views
Is it ok to do printing/logging in global object constructor or it's an undefined behavior?
#include<iostream>
struct A {
A () {
std::cout << "A::A()\n";
}
};
A my_a; // works fine and prints the above line
int main () {}
According to C++ standard, order of global ...
0
votes
0answers
105 views
Can't find the cause of an unhandled exception
I am writing a parser for .obj files, and an unhandled exception is being thrown somewhere within the for loop for this code block, and I am unable to find it. The visual studio error message is ...
1
vote
0answers
60 views
boost::iostreams<stream_buffer> with tokenizer without unnecessary copying
I'm trying to create a string I can tokenise, from a file. What works is
boost::iostreams::stream_buffer<boost::iostreams::mapped_file_source> file("file.txt");
...
0
votes
0answers
74 views
Android app throws java.util.concurrent.RejectedExecutionException: pool=128/128, queue=10/10
My production android app throws this exception. When I analysed crittercism I noticed that many of my async tasks were not completing. They were hanging on ClientSession.java:361 responseMessage = ...
2
votes
1answer
53 views
Copy contructor error with no obvious copy
I'm attempting to build a bit of simple logging functionality from scratch, with a stream like '<<' interface, and am running into a bit of compiler issue. Here is the basics of my code:
...
0
votes
1answer
52 views
how this function read text into a struct?
I am trying to understand what exactly the following function is doing. It is used to read a text file into a struct, called AEntry, which only contains four ints.
The file contains a list of lines. ...
1
vote
4answers
67 views
String made from the first char of another string - why is it also printing the full original string?
Learning C++. I just want to grab the first character in a string, then make a new string based on such character, and then print it out:
#include <iostream>
using namespace std;
int main(int ...
0
votes
0answers
12 views
Setting std::io_base flags for custom stream class
I have a custom class called Stream
class Stream
public:
Stream& operator<<(int i) { stream_ << i; return *this;}
template <typename CustomClass>
...
7
votes
4answers
161 views
Misunderstanding about ostream class and operator <<
After looking at the ostream::operator << c++ reference,
I noticed the following declarations:
ostream& operator<< (bool val);
ostream& operator<< (short val);
ostream& ...
0
votes
1answer
54 views
Evaluation sequence and << operator [duplicate]
Why this snippet:
int i = 0;
cout << ++i << " " << ++i;
produces 2 2 instead of 1 2?
EDIT: Pointers to answers about undefined evaluation order don't clear this issue for me. If ...
0
votes
2answers
44 views
Cin Show Default Value
With C++ is it possible to give the user a default value with the Cin statement, then have them backspace what they want to change? For instance: I give the user an option to change a string name, I ...
0
votes
3answers
103 views
#include <iostream> in multiple files
I hope this hasn't been asked before on this site. I wasn't able to find a solid answer from google.
What happens when you #include iostream in multiple files of a project? I always use #ifndef and ...
-4
votes
2answers
81 views
C++: Two compilers, two very different outputs [closed]
I am trying a run a C++ program on my machine. I have two compilers:- gcc and borland. The program is as follows:
#include<iostream>
using namespace std;
enum Colours
{
red,
green,
...
4
votes
2answers
55 views
How to create a collection of stream objects
As most know it's not possible to have a standard collection of references. It's also not possible to copy a stream object.
But what if I want to make a collection (say a std::vector) of stream ...
0
votes
1answer
28 views
map of fstream pointers in c++
I want to have a map of (int, fstream*) and to modify it using some functions. I can easily modify it within main, but if I want to use it by sending the pointer to the fstream I got this compiler ...
-1
votes
1answer
65 views
Reading in both strings and ints from a text file c++
ok, heres the deal. Below I the input from my file.
3332453:Ryan:77 Easy Street
3324532:Tom:1 Victory Lane
3326854:Gary:69 Sexual Ave
3304357:Susan:11 Straight Road
3343651:Frank:96 Backwards ...
37
votes
5answers
955 views
Are int8_t and uint8_t intended to behave like a character?
Given this C++11 program, should I expect to see a number or a letter? Or not make expectations?
#include <cstdint>
#include <iostream>
int main()
{
int8_t i = 65;
std::cout ...
8
votes
2answers
109 views
Why are num_get and num_put asymmetric?
The arithmetic extraction operator for std::basic_istream has non-virtual overloads for all 8 integer types (not listing chars, which are handled differently anyway), and it calls num_get::get, which ...
1
vote
4answers
79 views
namespace detection [duplicate]
I'm trying to write a log library which would use an external tool
To make the library more natural to use, i would like to be able to detect the namespace in which cout is used.
concretly the ...
1
vote
2answers
51 views
ostream, copy function printing string address, instead of string contents
This prints the address for my string, but not its' contents,
#include <memory>
#include <string>
#include <list>
#include <iostream>
#include <iterator>
using ...
1
vote
1answer
63 views
C# style enums in C++
I'm trying to write a log library which would use an external tool
i'm looking for convenient way to add Key-strings to the output stream to help parsing by the external tool while having the least ...
1
vote
0answers
153 views
QT: iostream: no such file or directory
I am working with Qt creator on Windows vista. I am trying to compile a very simple ".cpp" code that includes the standard c++ library "iostream", like this:
#include <iostream>
using namespace ...
2
votes
1answer
72 views
Reading a specific number of characters from C++ stream into std::string
I'm pretty familiar with most of C++ but one area I've avoided has been IO streams, mainly because I've been using it on embedded systems where they're not appropriate. Recently I've had to become ...
0
votes
3answers
81 views
Not able to read whole file
I'm making a C++ to be able to open a .bmp image and then being able to put it in a 2D array. Right now i have the code like this:
#include <iostream>
#include <fstream>
#include ...
0
votes
0answers
46 views
std::ostream outputs something wrong
I have created code with some classes, which all are derived from Object class and have virtual method repr, which return Bytes object. Bytes object is just a layer over vector<char>, but is ...




