大约有 5,530 项符合查询结果(耗时:0.0097秒) [XML]

https://www.tsingfun.com/it/cpp/2150.html 

MFC 日期时间控件CDateTimeCtrl自绘 - C/C++ - 清泛网 - 专注C/C++及内核技术

...:方法同ComboBox自绘(http: www.tsingfun.com html 2016 code_1110 100.html),采用图片拼接的方式,本例实现较基础仍有细节待...先看效果: 方法同ComboBox自绘(https://www.tsingfun.com/down/code/100.html),采用图片拼接的方式,本例实现较基...
https://www.tsingfun.com/it/cpp/2156.html 

Android RoundRectShape圆角矩形使用详解 - C/C++ - 清泛网 - 专注C/C++及内核技术

...8 }; // 内部矩形与外部矩形的距离 RectF inset = new RectF(100, 100, 50, 50); // 内部矩形弧度 float[] innerRadii = new float[] { 20, 20, 20, 20, 20, 20, 20, 20 }; RoundRectShape rr = new RoundRectShape(outerR, inset, null); ShapeDrawable drawable = new ShapeDraw...
https://www.tsingfun.com/it/cpp/2199.html 

C/C++获取Windows的CPU、内存、硬盘使用率 - C/C++ - 清泛网 - 专注C/C++及内核技术

...设置为nonsignaled while (true) { WaitForSingleObject(hEvent, 1000); res = GetSystemTimes(&idleTime, &kernelTime, &userTime); __int64 idle = CompareFileTime(preidleTime, idleTime); __int64 kernel = CompareFileTime(prekernelTime, kernelTime); __int64 user = CompareFileTime(pr...
https://www.tsingfun.com/it/opensource/1236.html 

vs2010编译boost若干问题解决 - 开源 & Github - 清泛网 - 专注C/C++及内核技术

...C\bin\x86_ia64”。再次运行“bootstrap.bat”,提示找不到“mspdb100.dll”,继续在环境变量中添加了路径——“C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE ”。 继续编译,还是不过,看了下bootstrap.log,提示一些头文件找不到,放弃...
https://www.tsingfun.com/ilife/tech/603.html 

全球科技百富:大疆创新创始人80后小伙汪滔挤进榜单 - 资讯 - 清泛网 - 专...

...美元资产净值超越了竞争对手三星公司的前会长李健熙(100亿美元)和其子李在镕(76亿美元),成功进入全球前20之列,位列第16位。 在福布斯“全球科技百富榜”亚洲排名中,马云排第一,马化腾排第二,雷军排第五。记者计算发...
https://www.tsingfun.com/ilife/tech/753.html 

互联网保险为何热衷推“奇葩险”? - 资讯 - 清泛网 - 专注C/C++及内核技术

...把屏幕换了,而从他屏幕的定损情况看,是在保险保障的1000元范围内,因此这次维修由保险公司买单,不用齐先生再买单掏钱了。“这份保险保费原价100元,一次网上促销时购买的,只花了25元。” 经常加班的齐先生用手机定...
https://www.tsingfun.com/it/da... 

ORACLE 启动提示 内存不足 OUTOF MEMORY - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

... kernel.shmmax = 2147483648 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 fs.file-max = 65536 net.ipv4.ip_local_port_range = 1024 65000 net.core.rmem_default=262144 net.core.rmem_max=262144 net.core.wmem_default=262144 net.core.wmem_max=262144 在ORACEL 用户下 输入 su - ...
https://www.tsingfun.com/it/da... 

oracle top 替代方案 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

... select * from ( select * from xxx order by xx ) where rownum <= 100 等同于SQL:select top 100 * from xxx order by xx。oracle top
https://www.tsingfun.com/it/bigdata_ai/421.html 

MongoDB仿关系型数据库Group聚合例子 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...ollection("GroupDemo").Save(CreateBsonDoc("u1", new DateTime(2015, 7, 20), 100)); db.GetCollection("GroupDemo").Save(CreateBsonDoc("u1", new DateTime(2015, 7, 22), 200)); db.GetCollection("GroupDemo").Save(CreateBsonDoc("u2", new DateTime(2015, 5, 22), 100)); ...
https://www.tsingfun.com/it/te... 

js中int和string互换(js int转string,js string转int) - 更多技术 - 清...

...照如下方法: 一、Javascript 将 int 转 string (1) var x = 100; a = x.toString(); (2) var x = 100; a = x + ""; //JS会自动隐性转换 二、Javascript 将string 变成 int var s = "32" var i = new Number(s); 或 var i = parseInt(s); parseInt返回值: parse...