赞助

随笔分类 -  C++

摘要:1 #include 2 #include 3 using namespace std; 4 1 /*文件大小格式化 2 *param [in] dwSize xx.xxB 、xx.xxKb 、xx.xxM 3 */ 4 5 LPCTSTR CFileUtil::FileSizeToFormat(DWORD dwSize) 6 { 7 TCHAR* ... 阅读全文
posted @ 2015-03-30 16:51 车臣 阅读(724) 评论(0) 推荐(0) 编辑
摘要:一、 http://www.cnblogs.com/welkinwalker/archive/2011/10/20/2218804.html 二、http://www.cnblogs.com/TianFang/archive/2008/09/19/1294521.html 三、http://blog 阅读全文
posted @ 2015-03-20 14:14 车臣 阅读(450) 评论(0) 推荐(0) 编辑
摘要:出处:http://www.cnblogs.com/hanxi/archive/2012/07/25/2608068.html 阅读全文
posted @ 2015-02-10 15:24 车臣 阅读(210) 评论(0) 推荐(0) 编辑
摘要:C++中不允许这样的写法 85<= score <=100;你要想表示85<=score<=100的话只能这么写score>=85&&score<=100 阅读全文
posted @ 2015-01-26 15:24 车臣 阅读(2842) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 #include 4 using namespace std; 5 string LongToString(long l) 6 { 7 stringstream str; 8 str>l; 15 string str = LongToString(l); 16 size_t len = str.... 阅读全文
posted @ 2015-01-15 11:15 车臣 阅读(2997) 评论(0) 推荐(0) 编辑
摘要:第三方函数、头文件、测试工程下载地址:http://download.csdn.net/detail/u012958937/8361733 阅读全文
posted @ 2015-01-14 17:01 车臣 阅读(397) 评论(0) 推荐(0) 编辑
摘要:转载:http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=26354188&id=3198604 阅读全文
posted @ 2015-01-05 18:21 车臣 阅读(6388) 评论(2) 推荐(0) 编辑
摘要:vector: 1.delete element 转载:http://www.cnblogs.com/xudong-bupt/p/3522457.html 2.find element 转载:http://blog.sina.com.cn/s/blog_7c18235d0100tnjt.html 3 阅读全文
posted @ 2014-12-01 11:31 车臣 阅读(7017) 评论(0) 推荐(1) 编辑
摘要:转载:http://www.cnblogs.com/xufeiyang/archive/2012/05/09/2491871.html CValueFind main 阅读全文
posted @ 2014-11-20 18:13 车臣 阅读(2701) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.cnblogs.com/cxjchen/p/3148582.html 转载:http://blog.csdn.net/hackbuteer1/article/details/7460019 .h文件 .cpp文件 main函数 阅读全文
posted @ 2014-11-18 14:03 车臣 阅读(190) 评论(0) 推荐(0) 编辑
摘要:参照一:http://qaohao.iteye.com/blog/496237 参照二:http://hi.baidu.com/lnylvoeegzcgnrr/item/af68fd9cde40fc1a924f41f5 别人封装的TinyXML: .h文件 1 #include "xml\tinyx 阅读全文
posted @ 2014-11-10 17:47 车臣 阅读(344) 评论(0) 推荐(0) 编辑
摘要:函数名称: strrchr 函数原型:char *strrchr(const char *str, char c); 所属库: string.h 函数功能:查找一个字符c在另一个字符串str中末次出现的位置(也就是从str的右侧开始查找字符c首次出现的位置),并返回从字符串中的这个位置起,一直到字符 阅读全文
posted @ 2014-11-03 18:36 车臣 阅读(216) 评论(0) 推荐(0) 编辑
摘要:转载出自:http://www.cnblogs.com/MikeZhang/archive/2012/03/24/MySplitFunCPP.html 经常碰到字符串分割的问题,这里总结下,也方便我以后使用。 一、用strtok函数进行字符串分割 原型: char *strtok(char *str 阅读全文
posted @ 2014-11-03 16:39 车臣 阅读(273) 评论(0) 推荐(0) 编辑
摘要:1.TCHAR 宽字符的操作 _stprintf_s 2.宽字符拷贝 wcscpy 3.wsprintf() 函数将一系列的字符和数值输入到缓冲区 阅读全文
posted @ 2014-08-12 18:35 车臣 阅读(208) 评论(0) 推荐(0) 编辑
摘要:转自:http://www.cnblogs.com/yejianfei/archive/2012/10/07/2713715.html 我们最经常遇到的验证,就是电子邮件地址验证。网站上常见。各种网页脚本也都常用“正则表达式”(regular expression)对我们输入的电子邮件地址进行验证, 阅读全文
posted @ 2014-08-11 17:46 车臣 阅读(1266) 评论(0) 推荐(0) 编辑
摘要:出处:http://www.cnblogs.com/lzjsky/archive/2011/01/23/1942508.html 1. 查找字符 2. 替换字符串 stl 中的string只是提供了按照位置和区间的replace函数,而不能用一个string字串来替换指定string中的另一个字串. 阅读全文
posted @ 2014-08-05 10:12 车臣 阅读(278) 评论(0) 推荐(0) 编辑
摘要:运行结果 这里对is_email_valid()函数中的正则表达式做一个简短的说明,如果对于正则表示不是很清楚的同学就能很容易理解了。 const std::regex pattern("(\\w+)(\\.|_)?(\\w*)@(\\w+)(\\.(\\w+))+"); 首先注意‘()’表示将正则 阅读全文
posted @ 2014-08-03 00:29 车臣 阅读(698) 评论(0) 推荐(0) 编辑
摘要:char *strrchr( const char *string, int c ); char *wcsrchr( const wchar_t *string, int c ); int _mbsrchr( const unsigned char *string, unsigned int c ) 阅读全文
posted @ 2014-07-26 17:27 车臣 阅读(266) 评论(0) 推荐(0) 编辑
摘要:例子: 阅读全文
posted @ 2014-07-17 21:43 车臣 阅读(2259) 评论(0) 推荐(0) 编辑
摘要:出自:http://www.cnblogs.com/yaozhongxiao/archive/2010/08/08/1795338.html 在讨论全局变量之前我们先要明白几个基本的概念: 1. 编译单元(模块): 在ide开发工具大行其道的今天,对于编译的一些概念很多人已经不再清楚了,很多程序员最 阅读全文
posted @ 2014-07-16 19:58 车臣 阅读(286) 评论(0) 推荐(0) 编辑