close
// 轉化成c風格
string str1("hello world");
const char *c_str1=str1.c_str();
//轉化成數組
const char *a_str1=0;
a_str1=str1.data();
string str1("hello world");
const char *c_str1=str1.c_str();
//轉化成數組
const char *a_str1=0;
a_str1=str1.data();
全站熱搜
留言列表