码迷,mamicode.com
首页 > 其他好文 > 详细

VS2017中遇到不存在从string到const char*的转换函数的解决方法

时间:2019-09-18 19:33:03      阅读:127      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!