|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
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; } |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On Jun 7, 5:36pm, 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. |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On Jun 7, 7:51pm, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote: > On Jun 7, 5:36pm, 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. |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
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 - } |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
sergey.lukoshkin@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 |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.ee> wrote:
> 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. |
|
|
|
#7 |
|
Messages: n/a
Hébergeur: |
sergey.lukoshkin@gmail.com kirjutas:
> On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.ee> wrote: > >> 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 |
|
|
|
#8 |
|
Messages: n/a
Hébergeur: |
sergey.lukoshkin@gmail.com wrote:
> On Jun 7, 9:27 pm, Paavo Helde <nob...@ebi.ee> wrote: > >> 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 |
|
![]() |
| Outils de la discussion | |
|
|