进程间通信(IPC)介绍 进程间通信(IPC,InterProcess Communication)是指在不同进程之间传播或交换信息。 IPC的方式通常有管道(包括无名管道和命名管道)、消息队列、信号量、共享存储、Socket、Streams等。其中 Socket和Streams支持不同主机上的两个 ...
分类:
系统相关 时间:
2018-05-02 16:15:38
阅读次数:
208
package java.util; import java.util.function.Predicate; import java.util.stream.Stream; import java.util.stream.StreamSupport; public interface Collec... ...
分类:
其他好文 时间:
2018-04-25 21:00:33
阅读次数:
269
问题: Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You may assume that ...
分类:
其他好文 时间:
2018-04-21 16:11:05
阅读次数:
212
php伪协议: file:// — 访问本地文件系统http:// — 访问 HTTP(s) 网址ftp:// — 访问 FTP(s) URLsphp:// — 访问各个输入/输出流(I/O streams)zlib:// — 压缩流data:// — 数据(RFC 2397)glob:// — 查 ...
分类:
Web程序 时间:
2018-04-19 17:42:21
阅读次数:
257
转自https://www.ibm.com/developerworks/cn/java/j-lo-java8streamapi/ 为什么需要 Stream Stream 作为 Java 8 的一大亮点,它与 java.io 包里的 InputStream 和 OutputStream 是完全不同的 ...
分类:
编程语言 时间:
2018-04-09 16:22:43
阅读次数:
194
OBJECT STREAMS – SERIALIZATION AND DESERIALIZATION IN JAVA EXAMPLE USING SERIALIZABLE INTERFACEHitesh Garg | November 7, 2014 | io | 9 CommentsIn the ... ...
分类:
编程语言 时间:
2018-03-23 16:17:27
阅读次数:
266
In computing, reactive programming is a declarative programming paradigm concerned with data streams and the propagation of change. programming around ...
分类:
其他好文 时间:
2018-03-21 00:04:14
阅读次数:
195
https://developer.lightbend.com/blog/2018-02-06-reactive-streams-ee4j/index.html By James Roper (@jroper), February 6, 2018 In my current role at Ligh ...
分类:
其他好文 时间:
2018-03-12 17:04:09
阅读次数:
201
公司需要升级PHP版本至PHP7,对于用惯了wamp的来说,添加一下PHP扩展应该是很容易的,看我以前的文章(WampServer自己DIY添加apache、php、mysql版本)。 不过再配置的当中并不顺利,要集成php7.1.15花了一点时间,因为使用的是 wampserver2.2e-php ...
分类:
Web程序 时间:
2018-03-08 14:14:53
阅读次数:
301
题目描述 Greg has a weighed directed graph, consisting of n vertices. In this graph any pair of distinct vertices has an edge between them in both directi ...
分类:
其他好文 时间:
2018-02-28 22:52:35
阅读次数:
232