HCE基础知识普及 http://www.cebnet.com.cn2014-09-18 10:32来源:中钞研究院 字号: 字号: NFC技术发展 NFC(Near Field Communication)是“近场通讯”的简称,采用短距离RF(射频)通讯技术。NFC 工作频率为13.56Hz,有效 ...
分类:
其他好文 时间:
2016-10-11 11:35:56
阅读次数:
232
进程间的通信 进程间的通信(Inter Process Communication, IPC)问题主要有3个: (1)一个进程如何把信息传递给另一个进程; (2)确保两个或更多进程在关键活动中不会出现交叉; (3)有协作关系的进程的时序问题。 两个或多个进程读写某些共享数据,而最后的结果取决于进程运 ...
分类:
系统相关 时间:
2016-09-23 09:52:02
阅读次数:
200
oracle不能启动了,报错ORA-03113: end-of-file on communication channel (通信通道的文件结尾) 解决办法: ...
分类:
数据库 时间:
2016-09-20 16:42:18
阅读次数:
205
1. Socket介绍 概念 A network socket is an endpoint of a connection across a computer network. Today, most communication between computers is based on the ...
分类:
编程语言 时间:
2016-09-16 11:19:33
阅读次数:
237
一、套接字 1.1、套接字套接字最初是为同一主机上的应用程序所创建,使得主机上运行的一个程序(又名一个进程)与另一个运行的程序进行通信。这就是所谓的进程间通信(Inter Process Communication,IPC)。有两种类型的套接字:基于文件的和面向网络的。 第一种:基于文件的 因为两个 ...
分类:
编程语言 时间:
2016-09-16 10:07:05
阅读次数:
238
这部分参考文献2:详细内容打开链接看 程序员必须让拥有依赖关系的进程集协调,这样才能达到进程的共同目 标。可以使用两种技术来达到协调。第一种技术在具有通信依赖关系的两个进程间传递信息。这种技术称做进程间通信(interprocess communication)。第二种技术是同步,当进程间相互具有合 ...
分类:
系统相关 时间:
2016-09-15 17:59:26
阅读次数:
253
EventBus is a publish/subscribe event bus optimized for Android. EventBus... simplifies the communication between components decouples event senders a ...
分类:
其他好文 时间:
2016-09-14 14:07:41
阅读次数:
133
1741. Communication Fiend Time limit: 1.0 second Memory limit: 64 MB Kolya has returned from a summer camp and now he's a real communication fiend. He ...
分类:
其他好文 时间:
2016-09-10 14:41:29
阅读次数:
287
介绍 经常会在错误日志中看到这个报错,复制官方文档的解释。 Aborted_connects If a client is unable even to connect, the server increments the Aborted_connects status variable. Unsu ...
分类:
数据库 时间:
2016-09-08 12:59:07
阅读次数:
334
现在有很多可用的技术允许你创建被不同客户端所消费的服务,这些客户端可能是Web应用程序、Windows应用程序和移动应用等。服务可以支持http协议或者其他协议。接下来的讨论仅限于ASP.NET Web API和WCF。 WCF(Windows Communication Foundation),使 ...