Connecting Tech Pros Worldwide Forums | Help | Site Map

what is "streamsize" and "width(n)"?

Jess
Guest
 
Posts: n/a
#1: Jun 17 '07
Hello,

I read the specification of width(n) and it says this function allows
me to pad on the left to the stream's width, and this width is
"streamsize". What is streamsize exactly? Is it measured in the
number of chars or something?

Thanks,
Jess


Obnoxious User
Guest
 
Posts: n/a
#2: Jun 17 '07

re: what is "streamsize" and "width(n)"?


On Sun, 17 Jun 2007 05:37:09 -0700, Jess wrote:
Quote:
Hello,
>
I read the specification of width(n) and it says this function allows
me to pad on the left to the stream's width, and this width is
"streamsize". What is streamsize exactly? Is it measured in the
number of chars or something?
>
It's a typedef for one of the signed basic integral types, representing
the number of characters transferred in an io operation, or the size
of io buffers.

--
Obnoxious User
Jess
Guest
 
Posts: n/a
#3: Jun 17 '07

re: what is "streamsize" and "width(n)"?


On Jun 17, 10:34 pm, Obnoxious User <O...@127.0.0.1wrote:
Quote:
On Sun, 17 Jun 2007 05:37:09 -0700, Jess wrote:
Quote:
Hello,
>
Quote:
I read the specification of width(n) and it says this function allows
me to pad on the left to the stream's width, and this width is
"streamsize". What is streamsize exactly? Is it measured in the
number of chars or something?
>
It's a typedef for one of the signed basic integral types, representing
the number of characters transferred in an io operation, or the size
of io buffers.
>
--
Obnoxious User

I tried it on an example

cout.width(10);
cout << "hello" << endl;

Then I noticed there are only 5 characters padded on the left of
"hello". Why is it not 10?

Thanks,
Jess

Obnoxious User
Guest
 
Posts: n/a
#4: Jun 17 '07

re: what is "streamsize" and "width(n)"?


On Sun, 17 Jun 2007 06:08:14 -0700, Jess wrote:
Quote:
On Jun 17, 10:34 pm, Obnoxious User <O...@127.0.0.1wrote:
Quote:
>On Sun, 17 Jun 2007 05:37:09 -0700, Jess wrote:
Quote:
Hello,
>>
Quote:
I read the specification of width(n) and it says this function allows
me to pad on the left to the stream's width, and this width is
"streamsize". What is streamsize exactly? Is it measured in the
number of chars or something?
>>
>It's a typedef for one of the signed basic integral types, representing
>the number of characters transferred in an io operation, or the size
>of io buffers.
>>
>--
> Obnoxious User
>
>
I tried it on an example
>
cout.width(10);
cout << "hello" << endl;
>
Then I noticed there are only 5 characters padded on the left of
"hello". Why is it not 10?
>
http://www.cplusplus.com/reference/i...ase/width.html

--
Obnoxious User
John Harrison
Guest
 
Posts: n/a
#5: Jun 17 '07

re: what is "streamsize" and "width(n)"?


Jess wrote:
Quote:
On Jun 17, 10:34 pm, Obnoxious User <O...@127.0.0.1wrote:
Quote:
>On Sun, 17 Jun 2007 05:37:09 -0700, Jess wrote:
Quote:
>>Hello,
>>I read the specification of width(n) and it says this function allows
>>me to pad on the left to the stream's width, and this width is
>>"streamsize". What is streamsize exactly? Is it measured in the
>>number of chars or something?
>It's a typedef for one of the signed basic integral types, representing
>the number of characters transferred in an io operation, or the size
>of io buffers.
>>
>--
> Obnoxious User
>
>
I tried it on an example
>
cout.width(10);
cout << "hello" << endl;
>
Then I noticed there are only 5 characters padded on the left of
"hello". Why is it not 10?
>
Thanks,
Jess
>
Because "hello" is also five characters. width(10) means print the next
value in a 'field' of width 10, 5 spaces plus 5 for "hello" equals 10.

john
Jess
Guest
 
Posts: n/a
#6: Jun 17 '07

re: what is "streamsize" and "width(n)"?


On Jun 17, 11:18 pm, John Harrison <john_androni...@hotmail.com>
wrote:
Quote:
Jess wrote:
Quote:
On Jun 17, 10:34 pm, Obnoxious User <O...@127.0.0.1wrote:
Quote:
On Sun, 17 Jun 2007 05:37:09 -0700, Jess wrote:
>Hello,
>I read the specification of width(n) and it says this function allows
>me to pad on the left to the stream's width, and this width is
>"streamsize". What is streamsize exactly? Is it measured in the
>number of chars or something?
It's a typedef for one of the signed basic integral types, representing
the number of characters transferred in an io operation, or the size
of io buffers.
>
Quote:
Quote:
--
Obnoxious User
>
Quote:
I tried it on an example
>
Quote:
cout.width(10);
cout << "hello" << endl;
>
Quote:
Then I noticed there are only 5 characters padded on the left of
"hello". Why is it not 10?
>
Quote:
Thanks,
Jess
>
Because "hello" is also five characters. width(10) means print the next
value in a 'field' of width 10, 5 spaces plus 5 for "hello" equals 10.
>
john
Thanks!
Jess

Closed Thread