string.c_str()
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 |
Call c_str() to get a const char * (LPCSTR) from a std::string. It's all in the name: LPSTR - (long) pointer to string - char * LPCSTR - (long) pointer to constant string - const char * LPWSTR - (long) pointer to Unicode (wide) string - wchar_t * LPCWSTR - (long) pointer to constant Unicode (wide) string - const wchar_t * LPTSTR - (long) pointer to TCHAR (Unicode if UNICODE is defined, ANSI if not) string - TCHAR * LPCTSTR - (long) pointer to constant TCHAR string - const TCHAR * You can ignore the L (long) part of the names -- it's a holdover from 16-bit Windows. |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=757