1.string.c_str() c_str():生成一個const char*指針,指向以空字符終止的數組。2. string.data()??data():與c_str()類似,但是返回的數組不以空字符終止。3.思考:如果向通過C風格的接口修改string的內容,怎么辦?