码迷,mamicode.com
首页 >  
搜索关键字:cstring    ( 6726个结果
windows系统调用 临界区机制
1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 7 static int g_nIndex=0; 8 const int MAX_TIMES=10; 9 s...
分类:Windows程序   时间:2014-06-18 14:23:43    阅读次数:205
VC++ 通过ADO连接数据库查询时返回空值报错的解决方案
当数据库的字段值允许为空时, 而且此时内容也为空时,则执行查询会出错,例如 CString str = pRecordset->GetFields()->GetItem((long)0)->GetValue(); 或者 str= pRecordset->GetCollect("posInfo");    会弹出如下窗口提示出错!       更加奇怪的是  catch(....
分类:数据库   时间:2014-06-18 12:15:56    阅读次数:415
windows系统调用 semaphore信号量
1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 HANDLE g_hSemThreads=INVALID_HANDLE_VALUE; 7 8 static ...
分类:Windows程序   时间:2014-06-17 14:26:59    阅读次数:353
CString 的一些事
MFCVisual Studio 2008CString 的 Format 中不能这样存在str.Format(_T("Cool(\%)")); 或者str.Format(_T("Cool(%)")); 即format非CString类型值时不能带%改:str = (_T("Cool(\%)"));
分类:其他好文   时间:2014-06-16 00:10:27    阅读次数:234
windows系统调用 利用事件对象实现进程通信
1 #include "iostream" 2 #include "windows.h" 3 #include "cstring" 4 using namespace std; 5 6 static LPCTSTR g_szContinueEvent="w2kdg.EventDemo.event.....
分类:Windows程序   时间:2014-06-14 20:48:50    阅读次数:383
MFC获取系统当前时间
1.使用CTime类 CString str; //获取系统时间 CTime tm; tm=CTime::GetCurrentTime(); str=tm.Format("现在时间是%Y年%m月%d日 %X %H:%M:%S");MessageBox(str,NULL,MB_OK);%a...
分类:其他好文   时间:2014-06-10 19:46:24    阅读次数:337
转换MFC CString 到std::string
std::string CStringToSTDStr(const CString& theCStr) { // Convert the CString to a regular char array const int theCStrLen = theCStr.GetLength(); char *buffer = (char*)malloc(sizeof(char)*(theCStrLe...
分类:其他好文   时间:2014-06-08 16:33:53    阅读次数:218
HDU 1495 非常可乐 (BFS)
问题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1495 题目大意:一个瓶子容积s,两个杯子容积分别n,m,并且都没有刻度(不能比对噢!)。相互倒水,求平分的他们的最少倒水次数。 思路:暴力搜索吧。并且求最少,(即最优解),随意上BFS; 思考:状态,转移过程,怎么剪纸。 惨痛的debug,我不解释了。...
分类:其他好文   时间:2014-06-08 15:48:26    阅读次数:234
C++ 中 int,char*,string,CString之间相互转换-整理
#include //使用C++标准库的string类时using namespace std;//同上#include #include #include //要将string类和int类型直接转换最好有这些包含,//因为自己写一个转换函数比较方便,函数定义参考如下string getstring...
分类:编程语言   时间:2014-06-08 06:37:42    阅读次数:304
Unicode环境下完成CString向string类型的转换
CString是MFC的字符串类,它不是基本类型,而是对字符串的封装,它是自适应的,在UNICODE环境下就是CStringW,在非UNICODE环境下就是CStringA。       CString的三种形式       Visual C++.NET中将CStringT作为ATL和MFC的共享的“一般”字符串类,它有CString、CStringA和CStringW三种形式,分别操作不...
分类:其他好文   时间:2014-06-07 15:34:06    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!