天天看点

c++中如何把int转化成char

// 在 C++ 里把其它类型转换成字符串时最好是用纯 C++ 的机制: stringstream 类。

// ( http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.1)

#include <iostream>

#include <sstream>

using namespace std;

void main( ) {

    int i = 100;

    stringstream ss;

    ss << i;

    const char *cString = ss.str( ).c_str( );

}

// stringstream 的 str 方法返回 string;string 的 c_str 方法则返回 C 字符串。

// 应当一提的是,在 C++ 里,应该尽量避免用 C 字符串而改用 C++ 字符串(string)。