标签:div color time style pre 成员函数 类型 方法 字符
使用c_str()函数
c_str函数的返回值是const char*。
c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同.
这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。
举个栗子:
String st = "insert into chuang values (‘" + vos[0] + "‘, ‘" + vos[1] + "‘,‘" + str_time + "‘)"; const char* sql1 = st.c_str();
VS2017中遇到不存在从string到const char*的转换函数的解决方法
标签:div color time style pre 成员函数 类型 方法 字符
原文地址:https://www.cnblogs.com/ming-4/p/11544441.html