Hello everyone!
My task is in converting numbers from string to int variables. I used
istringstream to perform it.
So I wrote simple test function. But it doesn't work as I expected
because val is not being changed while the program is running. Could
you please tell me why ??
#include <iostream>
#include <sstream>
#include <iomanip>
#include <stdint.h>
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
while( true )
{
std::cout << "Enter num: " << std::endl;
std::cin >str;
istr.str(str);
istr >val;
std::cout << "Number: " << val << std::endl;
}
return 0;
} 12 2325
On Jun 7, 5:36*pm, sergey.lukosh...@gmail.com wrote:
My task is in converting numbers from string to int variables. I used
istringstream to perform it.
So *I wrote simple test function. But it doesn't work as I expected
because val is not being changed while the program is running. Could
you please tell me why ??
#include <iostream>
#include <sstream>
#include <iomanip>
#include <stdint.h>
int main()
{
* * *static std::string str;
* * *static std::istringstream istr;
* * *static unsigned val;
* * while( true )
* * {
* * * * std::cout << "Enter num: " << std::endl;
* * * * std::cin >str;
* * * * istr.str(str);
* * * * istr >val;
* * * * std::cout << "Number: " << val << std::endl;
* * }
* * return 0;
}
You need to clear the buffer held by the stringstream object. Make a
call istr.str("");
Alternatively, why don't you use boost::lexical_cast<which is just a
header only library from boost? Saves you from error handling routines
as well which otherwise you need to employ yourself for cases where it
fails.
On Jun 7, 7:51*pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Jun 7, 5:36*pm, sergey.lukosh...@gmail.com wrote:
My task is in converting numbers from string to int variables. I used
istringstream to perform it.
So *I wrote simple test function. But it doesn't work as I expected
because val is not being changed while the program is running. Could
you please tell me why ??
#include <iostream>
#include <sstream>
#include <iomanip>
#include <stdint.h>
int main()
{
* * *static std::string str;
* * *static std::istringstream istr;
* * *static unsigned val;
* * while( true )
* * {
* * * * std::cout << "Enter num: " << std::endl;
* * * * std::cin >str;
* * * * istr.str(str);
* * * * istr >val;
* * * * std::cout << "Number: " << val << std::endl;
* * }
* * return 0;
}
You need to clear the buffer held by the stringstream object. Make a
call istr.str("");
Sorry, correction : it seems eof() bit is being set for the
stringstream. And hence it further doesn't work. You need to clear
that flag for the next iteration. For that, you need to call the
clear() member. Verified that by putting in:
std::cout << std::endl << istr.eof() << " " << istr.fail() << " "
<< istr.bad() << std::endl;
You need to check those flags, eof() may be ok but if the rest of the
2 bits are set then that would probably mean an error with the IO
operation.
Alternatively, why don't you use boost::lexical_cast<which is just a
header only library from boost? Saves you from error handling routines
as well which otherwise you need to employ yourself for cases where it
fails.
On Jun 7, 8:19 pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Jun 7, 7:51 pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Jun 7, 5:36 pm, sergey.lukosh...@gmail.com wrote:
My task is in converting numbers from string to int variables. I used
istringstream to perform it.
So I wrote simple test function. But it doesn't work as I expected
because val is not being changed while the program is running. Could
you please tell me why ??
#include <iostream>
#include <sstream>
#include <iomanip>
#include <stdint.h>
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
while( true )
{
std::cout << "Enter num: " << std::endl;
std::cin >str;
istr.str(str);
istr >val;
std::cout << "Number: " << val << std::endl;
}
return 0;
}
You need to clear the buffer held by the stringstream object. Make a
call istr.str("");
Sorry, correction : it seems eof() bit is being set for the
stringstream. And hence it further doesn't work. You need to clear
that flag for the next iteration. For that, you need to call the
clear() member. Verified that by putting in:
std::cout << std::endl << istr.eof() << " " << istr.fail() << " "
<< istr.bad() << std::endl;
You need to check those flags, eof() may be ok but if the rest of the
2 bits are set then that would probably mean an error with the IO
operation.
Alternatively, why don't you use boost::lexical_cast<which is just a
header only library from boost? Saves you from error handling routines
as well which otherwise you need to employ yourself for cases where it
fails.
Thanks a lot ! Now I call istr.clear() and it works properly.
Here my fixed code.
P.S I've never used boost lib.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
while( true )
{
std::cout << "Enter num: " << std::endl;
std::cin >str;
istr.clear();
istr.str(str);
istr >val;
std::cout << "Number: " << val << std::endl;
}
return 0;
- Hide quoted text -
- Show quoted text -
} se**************@gmail.com kirjutas:
[...]
>
Thanks a lot ! Now I call istr.clear() and it works properly.
Here my fixed code.
P.S I've never used boost lib.
You should, lots of it will be included in the next C++ standard.
>
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not change
anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where they are used?
Would have avoided all the trouble in the first place...
while( true )
{
std::cout << "Enter num: " << std::endl;
std::cin >str;
istr.clear();
istr.str(str);
istr >val;
std::cout << "Number: " << val << std::endl;
}
return 0;
- Hide quoted text -
- Show quoted text -
}
Regards
Paavo
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.eewrote:
You should, lots of it will be included in the next C++ standard.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not change
anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where they are used?
Would have avoided all the trouble in the first place...
Well, I agree with you. In this case there is no benefit of using
static keyword. But if I take the contents of main() and put it in my
function that I'm going to call many times at a runtime it will reduce
the cost of function calling. se**************@gmail.com kirjutas:
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.eewrote:
>You should, lots of it will be included in the next C++ standard.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not change anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where they are used? Would have avoided all the trouble in the first place...
Well, I agree with you. In this case there is no benefit of using
static keyword. But if I take the contents of main() and put it in my
function that I'm going to call many times at a runtime it will reduce
the cost of function calling.
Are you sure? Have you measured this? If the variables are not local, the
compiler has harder times to optimize the code. If the variables are
local, the compiler can in principle optimize they all away. In your
current code you need an extra call to clear() function as well, which
would not be needed in case of local variables.
Also, by using such static variables you make your function non-reentrant
and thus hard and slow (external locking needed) to use in multithreaded
programs, with no apparent reasons for that.
IOW, the sooner you wander away from the perils of premature optimization
the better! For deciding what would be the best optimization you need to
be an expert, and even then you have to measure your hypothesis. Here I
think a possible optimization could be to use a certain C function
instead of multiple C++ objects construction, but I'm not sure at all.
Regards
Paavo se**************@gmail.com wrote:
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.eewrote:
>You should, lots of it will be included in the next C++ standard.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not change anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where they are used? Would have avoided all the trouble in the first place...
Well, I agree with you. In this case there is no benefit of using
static keyword. But if I take the contents of main() and put it in my
function that I'm going to call many times at a runtime it will reduce
the cost of function calling.
a) You should measure that.
b) This move will make your function unsuitable for multi-threaded client
code. You should definitely document that it is not reentrant.
Best
Kai-Uwe Bux
On Jun 7, 10:15 pm, Kai-Uwe Bux <jkherci...@gmx.netwrote:
sergey.lukosh...@gmail.com wrote:
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.eewrote:
You should, lots of it will be included in the next C++ standard.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not change
anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where they are used?
Would have avoided all the trouble in the first place...
Well, I agree with you. In this case there is no benefit of using
static keyword. But if I take the contents of main() and put it in my
function that I'm going to call many times at a runtime it will reduce
the cost of function calling.
a) You should measure that.
b) This move will make your function unsuitable for multi-threaded client
code. You should definitely document that it is not reentrant.
Best
Kai-Uwe Bux
Words of wisdom.....
But all in all I have to call istr.clear(). Because the specific of my
function is to process string in cycle. Thanks for answers!!
IOW, the sooner you wander away from the perils of premature optimization
the better! For deciding what would be the best optimization you need to
be an expert, and even then you have to measure your hypothesis. Here I
think a possible optimization could be to use a certain C function
instead of multiple C++ objects construction, but I'm not sure at all.
Ok. Imagine I got a string representing IPv4 address "1ABC2DF1" and I
should convert it to classical view "26.188.45.241". It seems to me
that the best way to to this is using stringstream... se**************@gmail.com kirjutas:
>
>IOW, the sooner you wander away from the perils of premature optimization the better! For deciding what would be the best optimization you need to be an expert, and even then you have to measure your hypothesis. Here I think a possible optimization could be to use a certain C function instead of multiple C++ objects construction, but I'm not sure at all.
Ok. Imagine I got a string representing IPv4 address "1ABC2DF1" and I
should convert it to classical view "26.188.45.241". It seems to me
that the best way to to this is using stringstream...
Yes, why not? There is nothing wrong with stringstream. I objected only to
using static objects, and reusing the same objects without any sound
reason.
Cheers
Paavo
On Jun 8, 12:17 am, Paavo Helde <nob...@ebi.eewrote:
sergey.lukosh...@gmail.com kirjutas:
IOW, the sooner you wander away from the perils of premature
optimization the better! For deciding what would be the best
optimization you need to be an expert, and even then you have to
measure your hypothesis. Here I think a possible optimization could
be to use a certain C function instead of multiple C++ objects
construction, but I'm not sure at all.
Ok. Imagine I got a string representing IPv4 address "1ABC2DF1" and I
should convert it to classical view "26.188.45.241". It seems to me
that the best way to to this is using stringstream...
Yes, why not? There is nothing wrong with stringstream. I objected only to
using static objects, and reusing the same objects without any sound
reason.
Cheers
Paavo
Thank you!
On Jun 7, 7:45 pm, sergey.lukosh...@gmail.com wrote:
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.eewrote:
You should, lots of it will be included in the next C++ standard.
int main()
{
static std::string str;
static std::istringstream istr;
static unsigned val;
main() is called only once so the keyword 'static' does not
change anything here. Why do you think 'static' is needed?
And why do you define them here, not inside the loop where
they are used? Would have avoided all the trouble in the
first place...
Well, I agree with you. In this case there is no benefit of
using static keyword. But if I take the contents of main() and
put it in my function that I'm going to call many times at a
runtime it will reduce the cost of function calling.
On the other hand, it will work correctly and be maintainable.
And who says it will reduce the cost of calling the function.
Until you have actual measurements indicating that this is
causing a real performance problem, it's just plain stupid to
add complexity for nothing. If you want a new, clean object,
you construct one.
--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34 This discussion thread is closed Replies have been disabled for this discussion. Similar topics
1 post
views
Thread by Samuele Armondi |
last post: by
|
8 posts
views
Thread by Agent Mulder |
last post: by
|
3 posts
views
Thread by bml |
last post: by
|
7 posts
views
Thread by Luther Baker |
last post: by
|
4 posts
views
Thread by dinks |
last post: by
|
6 posts
views
Thread by JustSomeGuy |
last post: by
|
8 posts
views
Thread by Randy Yates |
last post: by
|
6 posts
views
Thread by James Aguilar |
last post: by
|
11 posts
views
Thread by icanoop |
last post: by
| | | | | | | | | | |