Stringstream facilitates conversion between basic types

Source: Internet
Author: User
Tags cmath

Stringstream facilitates conversion between basic types

Using stream, stringstream can easily convert between basic types.

Today, I found it useful when I searched for it, which is better than sprintf. Because sprintf has to remember all kinds of conversion symbols, it is annoying, it is more convenient to use the stream for convenient conversion.

Directly paste the Code:

# Include
 
  
# Include
  
   
# Include
   
    
# Include
    
     
# Include
     
      
Using namespace std; int main () {int a = 10, aa; double B = 5.15, bb; string s = "100", ss = "100.5", str; // char str [100]; // you can use a char string to receive and convert char SS [100] = "sdfk liwei yuting jdsfj"; stringstream s1, s2, s3, s4, s5; s1 <> str; // output to the string and convert the integer to the string cout <
      
        > Str; // converts a floating point to a string cout <
       
         > Aa; // convert the string to an integer cout <> bb; // convert the string to a floating-point cout <
        
          > Aim) {cout <
         

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.