How to use string to format cstring in C ++?

Source: Internet
Author: User

That is, the following functions are implemented:

1 Cstring STR;
2 Double D =   10.24 ;
3 Str. Format ( " D = %. 2f " , 10.24 );

In fact, using the C ++ standard library is also relatively simple,CodeAs follows:

# Include < Sstream >
Using   Namespace STD;

..
Ostringstream Buf;
Double D =   10.24 ;
Buf < " D = " < D < Endl;

Buf. STR () is a string of the string type whose content is "d = 10.24.

Through comparison, it is found that the implementation is relatively simple, and the standard library is used for implementation, and the code is easy to transplant. Personal comparison is recommended.

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.