按类别查询搜索结果
关于关键词 的检测结果,共 147
dishytrm37 | 2013-04-29 17:44:24 | 阅读(120) | 评论(0)
Sipping a nice cup of cocoa while enjoying that kind of enchanting evening just makes even nicer. you have come to the conclusion that you have to let go of one of the core members of your foundational posse. the popular online community for small businesses. the large number of online and social...【阅读全文】
lmw0417 | 2013-04-26 09:52:28 | 阅读(1250) | 评论(0)
  C语言获取系统时间的几种方式  C语言中如何获取时间?精度如何?  1 使用time_t time( time_t * timer ) 精确到秒  2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒  3 计算时间差使用double difftime( time_t timer1, time_t timer0 )  4 使用DWORD GetTickCount() 精确到毫秒...【阅读全文】
fenglisong1028 | 2013-04-12 17:04:22 | 阅读(750) | 评论(0)
一个子程序与外界的直接联系越少,则内聚性越好,而与外界联系,就是全局变量和参数,所以参数和全局变量越少越好,否则程序很难维护,可读性也不高。而且,全局变量占用固定地址不变,在函数中,或局部要读取它时还得到外界去找,而且在一个大点的程序中如果大量使用全局变量会降低程序的可读性,而且占用了大量的有限空...【阅读全文】
【Windows平台】 win c盘清理
chengyake | 2013-03-26 17:27:52 | 阅读(960) | 评论(0)
点击(此处)折叠或打开@echo offecho 正在清除系统垃圾文件,请稍等......del /f /s /q %systemdrive%\*.tmpdel /f /s /q %systemdrive%\*._mpdel /f /s /q %systemdrive%\*.logdel /f /s /q %systemdrive%\*.gid...【阅读全文】
renxiaobin321321 | 2013-02-21 07:27:59 | 阅读(0) | 评论(0)
CString->std::string 例子: CString strMfc=“test“; std::string strStl; strStl=strMfc.GetBuffer(0);unicode情形下:    CStringW strw = _T("test");    CStringA stra(strw.GetBuffer(0));    strw.ReleaseBuffer(); &n...【阅读全文】
【Windows平台】 注册表reg文件法规则
leibniz_zsu | 2013-01-30 11:58:10 | 阅读(810) | 评论(0)
经常需要修改注册表项,但是一层一层打开注册表简直太麻烦了,Slyar又不想使用第三方工具来快速打开,因此直接编写注册表reg文件便成了Slyar修改注册表最常用的手段。1、第一行为以下内容Windows Registry Editor Version 5.002、第二行和最后一行均为空行3、新建项[路径\新主键名]4、删除项...【阅读全文】
【Windows平台】 芯片封装缩略介绍
Godbach | 2007-03-19 16:13:28 | 阅读(3252) | 评论(0)