大约有 8,000 项符合查询结果(耗时:0.0156秒) [XML]

https://bbs.tsingfun.com/thread-1369-1-1.html 

App Inventor 2 低功耗蓝牙(BLE) 硬件接入、数据通信及IO控制 - App Invent...

...介绍硬件接入App Inventor 2 的通用方法,类似的硬件接入都大同小异的。1、硬件接线(特别注意:VCC 3.3v 或 5v 请参阅说明书,不要弄错以免烧坏硬件)一般来说,需要接线的端口有以下4个,无论哪款蓝牙硬件,也无论哪种其他...
https://bbs.tsingfun.com/thread-1872-1-1.html 

MQTT与TCP的区别 - 创客硬件开发 - 清泛IT社区,为创赋能!

...初期,TCP协议比MQTT协议诞生早了25年。Ashton提出IoT概念也在1999年,因此MQTT协议生逢其时。当时MIT Auto-ID Labs的Kevin Ashton为了把宝洁的供应链上的RFID标签和互联网连接起来,在1999年第一个提出了IoT这个概念。发明人TCP协议的发...
https://www.tsingfun.com/ilife/tech/1930.html 

区块链技术到底什么鬼,为何被疯炒? - 资讯 - 清泛网 - 专注C/C++及内核技术

区块链技术到底什么鬼,为何被疯炒?5月25日,平安宣布加入全球区块链联盟R3,为首个来自中国的成员的消息不胫而走,区块链概念个股飞天诚信当天开盘一字涨停。区块链,这当...5月25日,“平安宣布加入全球区块链联...
https://www.tsingfun.com/it/cpp/667.html 

windows异常处理 __try __except - C/C++ - 清泛网 - 专注C/C++及内核技术

windows异常处理 __try __excepttry-except用法  try exceptwindows 系统独有的异常处理模型,windows的异常处理模式,称为SEH( structured exception handling ...try-except用法   try exceptwindows 系统独有的异常处理模型,windows的异常处理模式,...
https://www.tsingfun.com/it/cp... 

__attribute__ - C/C++ - 清泛网 - 专注C/C++及内核技术

...ttribute__instructionsGNU C的一大特色(却不被初学者所知)就__attribute__机制。__attribute__可以设置函数属性(Function Attribute)、变量属性(Variabl GNU C的一大特色(却不被初学者所知)就__attribute__机制。__attribute__可以设置函数...
https://stackoverflow.com/ques... 

Is it faster to count down than it is to count up?

... encoding If a previous instruction happens to set a flag (likely only on x86 family machines), you might not even need an explicit compare instruction Are these differences likely to result in any measurable improvement on real programs on a modern out-of-order processor? Highly unlikely. In fa...
https://www.tsingfun.com/it/tech/1879.html 

Lua简明教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...明教程这几天系统地学习了一下Lua这个脚本语言,Lua脚本一个很轻量级的脚本,也号称性能最高的脚本,用在很多需要性能的地方,比如:游戏脚本...这几天系统地学习了一下Lua这个脚本语言,Lua脚本一个很轻量级的脚本...
https://www.tsingfun.com/it/tech/1410.html 

Logstash实践: 分布式系统的日志监控 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...对于多机多应用部署就不合适了。这里的多机多应用指的同一种应用被部署到几台服务器上,每台服务器上又部署着不同的多个应用。可以想象,这种场景下,为了监控或者搜索某段日志,需要登陆多台服务器,执行多个tail -...
https://stackoverflow.com/ques... 

What is the difference between user and kernel modes in operating systems?

... CPU rings are the most clear distinction In x86 protected mode, the CPU is always in one of 4 rings. The Linux kernel only uses 0 and 3: 0 for kernel 3 for users This is the most hard and fast definition of kernel vs userland. Why Linux does not use rings 1 and 2: ...
https://www.tsingfun.com/it/cpp/666.html 

C++及Windows异常处理(try,catch; __try,__finally, __except) - C/C++ - ...

...} catch( 类型名 [形参名] ) { } C++的异常处理很简单,就如上的三个关键字,注意C++中throw,catch之后没有Java等语言中的finally。 Q: 为何C++不提供“finally”结构? A: 因为C++提供了另一种机制,完全可以取代finally,而且这种...