C++中string、char *、char[]、const char*的轉換

簡述: 1) char*轉string:可以直接賦值。 2) char[]轉string:可以直接賦值。 3) char*轉char[]:不能直接賦值,可以循環char*字符串逐個字符賦值,也可以使用strcpy_s等函數。 4) string轉char[]:不能直接賦值,可以循環char*字符串逐個字符賦值,也可以使用strcpy_s等函數 5) string轉char*:調用string對象的
相關文章
相關標籤/搜索