- 论坛徽章:
- 11
|
本帖最后由 zylthinking 于 2011-12-30 10:21 编辑
giantchen 发表于 2011-12-30 10:04 ![]()
回复 5# zylthinking
我返回去仔细想了想, 发觉是被误导了:
string::c_str
public member function
const char* c_str ( ) const;
Get C string equivalent
Generates a null-terminated sequence of characters (c-string) with the same content as the string object and returns it as a pointer to an array of characters.
A terminating null character is automatically appended.
The returned array points to an internal location with the required storage space for this sequence of characters plus its terminating null-character, but the values in this array should not be modified in the program and are only guaranteed to remain unchanged until the next call to a non-constant member function of the string object.
string::data
public member function
const char* data() const;
Get string data
Returns a pointer to an array of characters with the same content as the string.
Notice that no terminating null character is appended (see member c_str for such a functionality).
The returned array points to an internal location which should not be modified directly in the program. Its contents are guaranteed to remain unchanged only until the next call to a non-constant member function of the string object.
看到以上时, 脑筋没转弯; 事后又忘记的差不多, 只记得有这么回事, 误以为是从源码看到的 |
|