大约有 13,700 项符合查询结果(耗时:0.0234秒) [XML]

https://stackoverflow.com/ques... 

Optimizing away a “while(1);” in C++0x

...sume we have the following loops, where count and count2 are global variables (or have had their address taken), and p is a local variable, whose address has not been taken: for (p = q; p != 0; p = p -> next) { ++count; } for (p = q; p != 0; p = p -> next) { ++count2; } Coul...
https://www.tsingfun.com/it/tech/1390.html 

程序员之网络安全系列(三):数据加密之对称加密算法 - 更多技术 - 清泛网...

...8B4QCotyZkKf091WElCwG659QiVVw0= Decrypeted: I Love You, Li Li .NET 源码: using System; using System.Security.Cryptography; using System.IO; using System.Text; namespace AES { class MainClass { public static void Main (string[] args) { string password = "Don't beli...
https://www.tsingfun.com/it/cpp/1229.html 

boost多索引容器multi_index_container实战 - C/C++ - 清泛网 - 专注C/C++及内核技术

...的,具体请参见boost文档 最后,给出一些文章中用到的源码没有的实现部分 #include <algorithm> #include <vector> #include "boost/lambda/lambda.hpp" #include "boost/function.hpp" Course::Course( unsigned int num, unsigned int hour, std::string name ) ...
https://www.tsingfun.com/it/cp... 

[since C++11] std::array的使用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...****************** 1 2 3 4 5 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 0 0 0 0 源码 array_test.cpp std::array 欢迎访问github博客,与本站同步更新 来源:https://elloop.github.io/c++/2015-12-23/learning-using-stl-5-std-array
https://www.tsingfun.com/it/os_kernel/663.html 

深入理解 x86/x64 的中断体系 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...如下: 我们的 ISR 能正常工作了,我提供了完整的示例源码和磁盘映像下载:interrupt_demo 2. 保护模式下的中断机制 引入保护模式后,情形变得复杂多了,实施了权限控制机制,为了支持权限的控制增添了几个重要的数据结...
https://www.tsingfun.com/products/328.html 

CruiseControl.Net 进行持续化集成 - IT产品资讯 - 清泛网 - 专注C/C++及内核技术

...它是一款开源软件,你也可以在http://www.sf.net中找到它的源码和安装文件。如果你就是想使用CC.Net直接下载exe文件即可。下载后,在本地的安装过程如下: 双击CruiseControl.NET-1.3-Setup.exe程序,打开软件安装界面,如下: 一...
https://bbs.tsingfun.com/thread-1444-1-1.html 

【AI2+AI】人工智能舞姿识别App - 创客硬件开发 - 清泛IT社区,为创新赋能!

...转载自:https://mc.dfrobot.com.cn/thread-308376-1-1.html 文章aia源码如下: 人工智能舞姿识别APP难度: 中级课程类型: 教程学科: 计算机科学年级水平:9~12年级 本教程由Youth Mobile Power提供教程地址: Awesome Dancing w...
https://www.tsingfun.com/it/cpp/1878.html 

重构理论及实践——用工厂模式重构c++后台代码 - C/C++ - 清泛网 - 专注C/C...

...个小例子,是wetest平台压力测试产品的后台ServerCenter模块源码。(你问wetest是嘛?WeTest腾讯质量开放平台(wetest.qq.com),是将鹅厂沉淀十余年、历经千款游戏锤炼的优秀测试方案和工具开放给广大游戏开发者的开放测试平台。其...
https://bbs.tsingfun.com/thread-1442-1-1.html 

【App Inventor 2 数据可视化】使用柱状图和饼图收集数据 - App应用开发 - ...

...转载自:https://mc.dfrobot.com.cn/thread-316532-1-1.html 文章aia源码如下: [hide][/hide] 资源地址:https://drive.google.com/drive/f ... 0BGKOaa?usp=sharing(如打不开可以直接在附件中下载) 数据在行动1:使用柱状图和饼图收集数据跟踪我的...
https://www.tsingfun.com/it/os... 

tcp加速技术解决方案 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...化内核是比较直接且有效的方式。 但是需要对内核上游源码持续跟踪,关注bug和新特性,需要长期维护, 并且未来新版本很可能也会推出类似方面的优化patch。 内核新建连接瓶颈 在tcp三次握手的过程中,syn包连接请求会查...