c++ 默认类型转化的坑

  1 // to_string example
  2 #include    // std::cout
  3 #include      // std::string, std::to_string
  4  #include 
  5 using namespace std;
  6 int main ()
  7 {
  8    int c = 1;
  9    std::string a;
 10    a = c;
 11    cout << a ;
 12    return 0;
 13 }

既然能编译过
然后,输出为空

你可能感兴趣的:(c++ 默认类型转化的坑)