码迷,mamicode.com
首页 >  
搜索关键字:wstring    ( 179个结果
使用c++11标准库转换字符编码
转自:http://www.cnblogs.com/LinuxHunter/archive/2013/01/06/2848293.html#include #include #include const std::string ws2s( const std::wstring& src ){ std...
分类:编程语言   时间:2014-07-16 21:07:38    阅读次数:261
现代C++学习笔记之二入门篇1
现代 C++ 强调:基于堆栈的范围,而非堆或静态全局范围。自动类型推理,而非显式类型名称。智能指针而不是原始指针。std::string和std::wstring类型(请参见),而非原始char[]数组。标准模板库(STL) 容器(例如vector、list和map),而非原始数组或自定义容器。请参...
分类:编程语言   时间:2014-06-29 18:46:28    阅读次数:255
深入理解c++中char*与wchar_t*与string以及wstring之间的相互转换 [转]
本篇文章是对c++中的char*与wchar_t*与string以及wstring之间的相互转换进行了详细的分析介绍,需要的朋友参考下。 1 #ifndef USE_H_ 2 #define USE_H_ 3 4 #include 5 #include ...
分类:编程语言   时间:2014-06-17 21:31:31    阅读次数:276
c fopen
#include #include using namespace std;int main(){ int pid = GetCurrentProcessId(); auto path = Plug::GetCurrentPath();//返回std::wstring path +...
分类:其他好文   时间:2014-06-07 03:08:40    阅读次数:288
C++宽窄字符串转换
首先,贴出我给出的解决方案:http://files.cnblogs.com/xuejianhui/utils.rar再则,贴出网上最常见的例子:#include std::string ws2s(const std::wstring& ws){ std::string curLocale =...
分类:编程语言   时间:2014-05-21 18:46:28    阅读次数:400
string wstring
//只扩展为wstring,不考虑编码 std::wstringString2WString(conststd::string&str) { std::wstringwstr(str.length(),L‘‘); std::copy(str.begin(),str.end(),wstr.begin()); returnwstr; } //只拷贝低字节至string中 std::stringWString2String(conststd::wstring&ws..
分类:其他好文   时间:2014-05-14 15:58:11    阅读次数:262
STL之string
一、介绍 1、STL是C++的一部分,做到了数据结构和算法的分离,具有高度的可重用性、高性能、高度的可移植性、跨平台的优点。 2、字符串string的使用方法:全面介绍了string类的构造、赋值、连接、比较、子串、查找、插入、删除、替换、wstring和统一编码等方面。 STL 简介:分为三类:c...
分类:其他好文   时间:2014-05-14 09:05:40    阅读次数:374
托管c++ (CLI) String^ 到 std::string 的相互转化
#include "stdafx.h" #include #include #include using namespace msclr::interop; using namespace System; int main(array ^args) { // 为了可以打印wstring到控制台 std::wcout.imbue(std::locale("chs")); // 声明...
分类:编程语言   时间:2014-05-04 18:30:58    阅读次数:418
unicode string和ansi string的转换函数及获取程序运行路径的代码
#pragma once#include namespace stds { class tool { public: std::string ws2s(const std::wstring& ws) { std::string curLocale = setlocale(LC_ALL...
分类:其他好文   时间:2014-05-03 22:25:17    阅读次数:318
179条   上一页 1 ... 16 17 18
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!