集合接口和类型 |接口| 说明| |: |: :| IEnumerable|如果将foreach语句用于集合,就需要IEnumerable接口。这个接口定义了方法GetEnumerator(),它返回一个实现了IEnumerator接口的枚举 ICollection |ICollection接口由泛 ...
今天刷LeetCode的时候看题析,看到一个未曾使用过的方法String.join() /** * Creates a new String by putting each element together joined by the delimiter. If an element is null ...
分类:
其他好文 时间:
2020-04-29 12:48:31
阅读次数:
58
#!/bin/bash # # set up a network env with 2 namespaces: # # [ vpp1 ] [vpp] [ vpp2 ] # # vpp1: 192.168.0.1 # vpp2: 192.168.0.2 ip netns delete vpp1 ip ...
分类:
其他好文 时间:
2020-04-23 12:39:24
阅读次数:
84
本文介绍下Java中线程池的基本用法,基于此说明如何去确定线程池的大小。 线程池的创建方法 newFixedThreadPool 创建固定线程数的线程池,见下创建代码 /** * Creates a thread pool that reuses a fixed number of threads ...
分类:
编程语言 时间:
2020-04-21 13:34:00
阅读次数:
82
applyMiddleware是另一个核心函数 首先我们需要知道如何使用中间件 eg: import { createStore, applyMiddleware } from 'redux' import todos from './reducers' function logger({ getS ...
分类:
移动开发 时间:
2020-04-12 20:59:34
阅读次数:
87
Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE //单纯使用公私钥进行加解密,会存在公钥被替换伪造的风险,无法判断公钥是否属于服务提供商。 //所以,公钥需要通过CA机构的认证。 //CA机构用自己的私钥,对服务提供商的相关信息及公钥进 ...
分类:
其他好文 时间:
2020-04-06 00:17:22
阅读次数:
114
//堆栈 stack 一个有0个或多个元素的又穷线性表//长度为MaxSize 的堆栈Stack CreateStack(int MaxSize); //生成空栈表,最大MaxSizeint IsFull(Stack S, int MaxSize); //判断堆栈S是否已满void Push(Sta ...
分类:
其他好文 时间:
2020-03-28 20:05:46
阅读次数:
77
/** * Creates a new {@code ThreadPoolExecutor} with the given initial * parameters. * * @param corePoolSize the number of threads to keep in the pool, ...
分类:
编程语言 时间:
2020-03-24 18:48:09
阅读次数:
100
1、存储结构 private static class Entry<K,V> implements Map.Entry<K,V> { final int hash; final K key; V value; Entry<K,V> next; protected Entry(int hash, K ...
分类:
其他好文 时间:
2020-03-21 12:46:07
阅读次数:
64
注:本文使用的网课资源为中国大学MOOC https://www.icourse163.org/course/ZJU 93001 查找 查找 :根据某个给定的关键字K,从集合R中找出关键字与K相同的记录。 静态查找:集合中的记录是固定的,没有插入删除的操作,只有查找; 动态查找:集合中记录是动态变化 ...
分类:
其他好文 时间:
2020-03-18 00:03:19
阅读次数:
131