大约有 2,000 项符合查询结果(耗时:0.0080秒) [XML]
使用App Inventor 2 控制物联网设备/低功耗蓝牙设备(BLE) · App Inventor 2 中文网
...,App Inventor封装了Android开发模型,并通过图形块隐藏了实现细节,使得Java编程代码对用户来说是不可见的。
因此,在 App Inventor 中构建应用程序只需要通过将所选组件插入在一起来组合它们,并操作激活组件所需功能的关联块...
使用App Inventor扩展实现多点触控:Rotation Detector · App Inventor 2 中文网
...
使用App Inventor扩展实现多点触控:Rotation Detector
« 返回首页
Using App Inventor extensions to implement multitouch: Rotation Detector
Xinyue Deng dengxinyue0420@gmail.com
DRAFT (March ...
使用App Inventor扩展实现多点触控:Rotation Detector · App Inventor 2 中文网
...
使用App Inventor扩展实现多点触控:Rotation Detector
« 返回首页
Using App Inventor extensions to implement multitouch: Rotation Detector
Xinyue Deng dengxinyue0420@gmail.com
DRAFT (March ...
使用App Inventor扩展实现多点触控:Rotation Detector · App Inventor 2 中文网
...
使用App Inventor扩展实现多点触控:Rotation Detector
« 返回首页
Using App Inventor extensions to implement multitouch: Rotation Detector
Xinyue Deng dengxinyue0420@gmail.com
DRAFT (March ...
使用App Inventor扩展实现多点触控:Rotation Detector · App Inventor 2 中文网
...
使用App Inventor扩展实现多点触控:Rotation Detector
« 返回首页
Using App Inventor extensions to implement multitouch: Rotation Detector
Xinyue Deng dengxinyue0420@gmail.com
DRAFT (March ...
使用App Inventor扩展实现多点触控:Rotation Detector · App Inventor 2 中文网
... })();
使用App Inventor扩展实现多点触控:Rotation Detector
« 返回首页
Using App Inventor extensions to implement multitouch: Rotation Detector
Xinyue Deng dengxinyue0420@gmail.com
DRAFT (March ...
OceanBase使用libeasy原理源码分析:客户端 - 数据库(内核) - 清泛网 - 专...
...pdate是同步请求,在libeasy中,同步请求是通过异步请求来实现。使用libeasy作为服务器端的情况见《OceanBase使用libeasy原理源码分析:服务器端》,作为客户端使用时,会涉及到一些数据结构,easy_session_t, easy_client_t, easy_hash_t, easy_...
Logstash实践: 分布式系统的日志监控 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...着显示。每条日志开头还标明日志的来源(下图)。
实现这种效果的原理是后台跑着一个程序,这个程序负责汇总所有日志到一个本地文件中。只要执行tail -f这个文件就可以做到监控日志了。因为所有日志都汇总在一个文件...
什么是 Ringbuffer ? - C/C++ - 清泛网 - 专注C/C++及内核技术
...基百科里面的关于环形buffer的词条,你就会发现,我们的实现方式,与其最大的区别在于:没有尾指针。我们只维护了一个指向下一个可用位置的序号。这种实现是经过深思熟虑的—我们选择用环形buffer的最初原因就是想要提供...
c/c++取结构体指定成员的偏移,及原理解析 - C/C++ - 清泛网 - 专注C/C++及内核技术
...ffset_of可以使用std标准函数 offsetof(),在stddef h头文件中,实现原理如下(模拟系统的实现): define MY_STRUCT_OFFSET(s, m) ((size_t)(& ((s*)0)->m ))原理如下:1、0即空指 可以使用std标准函数 offsetof(),在stddef.h头文件中,实现原理如下(...