In C++ std::ostream is the base class for output streams.
-3
votes
0answers
27 views
Dereferencing objects
Im building custom ostream operator.
Now, the operator outputs good but only if I have endl at the end of the output, if I don't have endl then it says segmentation fault.
I saw this question also ...
1
vote
2answers
45 views
C++11 Adding a stream output operator for std::chrono::time_point
I would like to be able to do the following:
std::cerr << std::system_clock::now() << std::endl;
And get the following:
Wed May 1 11:11:12 2013
So I wrote the following:
...
0
votes
2answers
47 views
Best Practices with C++ ostream (tostring)
What are best practices when overloading the << operator. Particularly, how do I distinguish between opearting on a pointer vs an object. Is it kosher for them to both output the same string ...
2
votes
3answers
34 views
What circumstances ostream::write or ostream::operator<< would fail under?
In my C++ code, I am constantly writing different values into a file. My question is that if there is any circumstances that write or << would fail under, considering the fact that file was ...
3
votes
2answers
72 views
Ofstream returning garbage. Cout works… Why doesn't ofstream?
So I'm trying to design a program that inputs a file and then reads through the lines and takes each line and outputs info about it to a new file.
I have it all down... except! All my .txt files are ...
1
vote
2answers
37 views
How to flush the ostream when application crash
I have a ostream-based subclass which captures debug messages of my program.
/** @brief Customized output stream with "tee" feature */
template <typename CharT, typename Traits = ...
4
votes
2answers
66 views
identifier “ostream” is undefined error [closed]
i need to implement a number class that support operator << for output.
i have an error: "identifier "ostream" is undefined" from some reason eventhough i included and try also
here the ...
0
votes
1answer
52 views
C++ ostream operator issue
Hi I have this ostream operator that gives me this error when I compile: cannot access private member declared in class 'CService'
here is my code:
friend ostream& operator <<(ostream& ...
1
vote
2answers
62 views
C++ : Read/Write Binary data to file when data is complex
How would I write/read data to a file in binary, if I also have to define how to save my data?
I'm attempting to save some simple data structures out to a file in binary.
For example, I have a ...
1
vote
3answers
67 views
C++ Segmentation fault when working with <vector> and <fstream>
I was working with 3D vectors and everything worked perfectly. When I added and worked with ofstream files Segmentation Fault appeared.
I don't understand the problem at all.
The following code ...
1
vote
2answers
65 views
Class to output to several ostreams (file and console)
Right, I'm not even sure how to correctly formulate this; I feel it's a bit of an involved question. I'm sure someone can help me out here though.
This is what I want to do:
Have a single class ...
0
votes
3answers
101 views
Using C++ to replace snprintf and printf
I was wondering if i could get some help. I'm trying to port over some code as required in a lab assignment given to us. Basically I've created some program in C, and part of the requirement now is to ...
-1
votes
3answers
60 views
ostream implementatuon using printf
How to implement ostream-like class from scratch using printf only?
For me looks like the problem is in choosing the format string ,which is actually equal to the identifying input`s type and treating ...
4
votes
1answer
142 views
Overloaded ostream operator segmentation fault if no endl
class foo {
public:
friend ostream& operator << (ostream &os, const foo &f);
foo(int n) : a(n) {}
private:
vector <int> a;
};
ostream& operator ...
1
vote
3answers
147 views
c++ program to convert number into words not working
Here is a program written in c++ from this Write code to convert given number into words (eg 1234 as input should output one thousand two hundred and thirty four) question I modified to convert number ...
0
votes
1answer
87 views
How do I provide custom output streams in C++
I am working on an application the will need to sequentially encode/decode a series of bytes, and put them to a stream once they have been processed.
My plan was to subclass ostream and provide a ...
1
vote
1answer
64 views
My test.cpp file is using a default operator<<; What's wrong with this signature?
I've spent the last 30 minutes trying to figure out what is wrong with this:
From .h file:
// H/T sent. d-linked list Set
#ifndef SET_H
#define SET_H
#include <iostream>
#include ...
1
vote
1answer
62 views
How C++ determine arguments of overloaded operators?
I have overloaded I/O operators:
struct Time {
int hours;
int minutes;
};
ostream &operator << ( ostream &os, Time &t ) {
os << setfill('0') << setw( 2 ) << ...
0
votes
1answer
99 views
error C2512: 'std::basic_ostream<_Elem,_Traits>' : no appropriate default constructor available with Visual Studio only
I'm asking this question because I'm a bit helpless: this error occurs ONLY with Visual Studio, GCC compiles it without errors or even warnings. Since this is some portable code I'm looking for a ...
1
vote
1answer
87 views
class has no member “operator<<”
I have read through Should operator<< be implemented as a friend or as a member function? and Overloading Insertion Operator in C++, looks like the similar problem, but didn't fix my own ...
5
votes
1answer
160 views
How to use C++ std::ostream with printf-like formatting?
I am learning C++. cout is an instance of std::ostream class.
How can I print formatted string with it?
I still can use printf, but I want to learn more C++ style method which can take all C++ ...
1
vote
2answers
93 views
Why do overloads of 'operator<<' exist for the 'char' partial-specializations of std::basic_ostream?
I would like to know why the following operator<< overloads exist for basic_ostream's char partial-specializations:
template< class Traits >
basic_ostream<char,Traits>& ...
1
vote
3answers
230 views
operator overloading using ostream and chaining. Why return by reference?
There are many questions and answers for this, but I can't really find why we need to return by reference.
If we have (assume operator is already correctly overloaded for an object MyObject) :
...
2
votes
3answers
80 views
Own output stream (mock cout) [duplicate]
This is a sample C++ code
ostream& log = cout;
ostream& getLog() { return log; }
// somewhere in code
getLog() << "Message";
When this code executes, the "Message" gets printed.
Q: ...
3
votes
3answers
160 views
Center text in fixed-width field with stream manipulators in C++
I am refactoring some legacy code which is using printf with longs strings (without any actual formatting) to print out plain text table headers which looks notionally like this:
| Table | Column ...
4
votes
3answers
128 views
order of execution in operator<<
I have difficulties in understanding the sequence of calls in the code below.
I was expecting to see the output below
A1B2
While I can see that the output I get is
BA12
I thought that ...
0
votes
1answer
60 views
c++ declaring a function with ostream in class header
I am having problems declaring a class function from the header file, am not sure how it should be formatted in the header. The purpose of this is to save class object data into a file, to be able to ...
6
votes
2answers
262 views
Visual C++ 2012 cout crashes during run time
I decided to try Visual Studio 2012 Express today. First thing to do was to write "Hello world!" application, however, I couldn't make it work. I created a Windows console application project, wrote ...
0
votes
1answer
65 views
Mysterious behaviour when trying to use the std::ostream streaming operator with QString
I accidently tried to stream a QString with std::ostream. However, compilation (Windows SDK 7.1) succeeded, but put a warning:
Warning:C4717: 'operator<<' : recursive on all control paths, ...
0
votes
3answers
123 views
rounded the value of double
after searching an answer to my problem I decide to ask.
I was told I need to round the value of double into 3 decimal places.
I need to use this :
os.setf(std::ios::fixed,std::ios::floatfield);
...
2
votes
4answers
178 views
What is the difference between flush() and sync() in regard to fstream buffers?
I was reading the cplusplus.com tutorial on I/O. At the end, it says fstream buffers are synchronized with the file on disc
Explicitly, with manipulators: When certain manipulators are used on
...
1
vote
2answers
87 views
Outputting list of strings to ostream
I would like to output list of strings value to ostream.
I can declare and implement overloading function for this:
ostream& operator<< (ostream &out, const list<string> ...
0
votes
0answers
62 views
visual c++ 2010 ostream write fails [closed]
I'm debugging some code:
void MyObject:SomeFunction(std::ostream &os) const {
---
for (int i = 0; i < 198; i++) {
os.write(reinterpret_cast<const char*> (RowData(i)), sizeof(Real)
...
1
vote
1answer
129 views
how does this typedef syntax works..?
#include<iostream.h>
#include<conio.h>
typedef ostream& (*T)(ostream& , int);
class Base
{
T fun;
int var;
public:
Base(T func, int arg): fun(func) , var(arg)
...
-2
votes
2answers
71 views
Ostream from multiple classes
I seem to be getting the Error C2440: 'return' cannot convert from 'LinkList' to 'Tray *'. What i'm trying to do is add the output of a second class to that of the customer class. So if i was to call ...
1
vote
1answer
88 views
C# equivalent of C++ ostream::tellp for size limit on diskette
Is there a C# equivalent for StreamWriter of the C++ ostream::tellp? I am porting over some old C++ code to C#, but the client still wants to keep using diskettes (read: old equipment), so I need to ...
0
votes
2answers
96 views
C++ << overloading with ostream for correct formatting
I've started to play with coding my own linklist, It works fine for printing numbers but i use Templates in order to determine typename for use with objects. As such i have no issues entering data ...
2
votes
2answers
85 views
Overriding operator<< for console output doesn't work for member variables
I have a class MyList that overrides the << operator to be able to log itself to the console:
class MyList {
public:
vector<int> *numbers;
};
ostream& ...
0
votes
1answer
68 views
Non-member-function form for insertion operator
I want to have a non-class member overloaded put operator which uses reference parameters to output the information from a car object.
Here is my code:
ostream& operator<<(ostream& os, ...
2
votes
5answers
168 views
Split output in C/C++ for redirecting
Suppose I've got code like
#include <iostream>
using namespace std;
int main() {
cout << "Redirect to file1" << endl;
cout << "Redirect to file2" << endl;
...
1
vote
0answers
316 views
Initializer expression list treated as compound expression vector
I cant seem to get this one figured out, i'm trying to call a vector to a function and geting the errors
initializer expression list treated as compound expression
cannot convert Vector<int> to ...
3
votes
5answers
131 views
Auto newlining ostream
Sorry in advance for the bad title, not sure what to call what I'm trying to do.
Some background, if you don't care to read, skip to the next paragraph. I have a unit test class where I call assert ...
0
votes
1answer
62 views
How to call << operator on object in array?
I have an array of pointers to objects
Room *rooms[MAX_ROOMS];
rooms[0] = new Room(101, 1, RT_CLASSIC, 200.00);
rooms[1] = new Room(102, 2, RT_CLASSIC, 280.00);
rooms[2] = new Room(103, 4, ...
8
votes
3answers
129 views
Use of stringstream within ostream function
I'm looking into providing ostream operators for some math classes (matrix, vector, etc.) A friend has noted that the gcc standard library implementation of the ostream operator for std::complex ...
0
votes
1answer
77 views
C++ proper cleanup redirected buffer for tee ostream
I need to output messages to both console and log files.
After googling, i learnt "teebuf" concept which basically create a custom class inherited from basic_streambuf. This work fine but how to clean ...
1
vote
3answers
118 views
C++ Vector Template operator []
Firstly I wanted to say this is a HW assignment and I just have questions in regards to the errors I'm facing
I made a vector template with an insert function that adds a data_type to the end of a ...
4
votes
3answers
480 views
Why does using std::endl with ostringstream affect output speed?
I'm timing the difference between various ways to print text to standard output. I'm testing cout, printf, and ostringstream using both \n and std::endl. I expected std::endl to make a difference with ...
3
votes
0answers
138 views
Using large ostream tellp() function with large files when position > ULONG_MAX
I'm trying to store offsets of a file pointing to different positions on it.
Using tellp() function, I can know the actual position in the file, that is, an integer.
The problem comes when this ...
0
votes
1answer
72 views
Determine end of copied range when using remove_copy_if with ostream_iterator
I am trying to use remove_copy_if to copy an iterable directly to stdout through ostream_iterator. The remove_copy_if guarantees that the return value is an iterator to the end of the output range. ...
0
votes
3answers
105 views
Transfer contents from C FILE to C++ stream [closed]
Suppose I have a file opened with the C syntax
FILE* fp = fopen("whatever.txt", "w");
// Library function needs FILE* to work on
libray_function(fp);
// Now I'd like to copy the contents of file to ...



