954,505 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

IOS ::binary

Hi to all,

I'm a newbie to C++,i have a doubt in the ofstream write function.
I have a code like this
ofstream* rgpostrm [BASE_LAYER];

rgpostrm [BASE_LAYER] = new ofstream (pchCmp, ios::binary | ios:ut);
and some write function like
rgpostrm[ENHN_LAYER]->write(rgpvoenc [ENHN_LAYER]->pOutStream () str(),
rgpvoenc [ENHN_LAYER]->pOutStream () ->pcount ());

where the pchCmp is a string pointer points to the output file path.
I googled and found some related topics which has
1)
ofstream outfile ("new.txt",ofstream::binary);
outfile.write (buffer,size);
2)
ofstream out("test", ios:ut | ios::binary);

My question is whether my code has the same property of writing the buffer content of size n in the output file.
What it says for ios::binary | ios:ut and ios:ut | ios::binary

sathishkumar.e
Newbie Poster
3 posts since Nov 2007
Reputation Points: 10
Solved Threads: 0
 

>>ofstream* rgpostrm [BASE_LAYER];
Why do you need to many streams? And why allocate them ?

>>What it says for ios::binary | ios:out and ios:out | ios::binary
There is no difference between the two. Its like asking what's the difference between 2 times 3 and 3 times 2.

Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You