码迷,mamicode.com
首页 >  
搜索关键字:creates    ( 750个结果
C#容器
集合接口和类型 |接口| 说明| |: |: :| IEnumerable|如果将foreach语句用于集合,就需要IEnumerable接口。这个接口定义了方法GetEnumerator(),它返回一个实现了IEnumerator接口的枚举 ICollection |ICollection接口由泛 ...
分类:Windows程序   时间:2020-05-12 09:41:16    阅读次数:75
String join()
今天刷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
creates 2 connected namespaces vpp1 & vpp2
#!/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
redux教程之源码解析3applyMiddleware(分析在注释中)
applyMiddleware是另一个核心函数 首先我们需要知道如何使用中间件 eg: import { createStore, applyMiddleware } from 'redux' import todos from './reducers' function logger({ getS ...
分类:移动开发   时间:2020-04-12 20:59:34    阅读次数:87
一文读懂什么是CA证书
Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE //单纯使用公私钥进行加解密,会存在公钥被替换伪造的风险,无法判断公钥是否属于服务提供商。 //所以,公钥需要通过CA机构的认证。 //CA机构用自己的私钥,对服务提供商的相关信息及公钥进 ...
分类:其他好文   时间:2020-04-06 00:17:22    阅读次数:114
数据结构--2--stack, heap, queue, tree
//堆栈 stack 一个有0个或多个元素的又穷线性表//长度为MaxSize 的堆栈Stack CreateStack(int MaxSize); //生成空栈表,最大MaxSizeint IsFull(Stack S, int MaxSize); //判断堆栈S是否已满void Push(Sta ...
分类:其他好文   时间:2020-03-28 20:05:46    阅读次数:77
【面试题2020-03-24】Java线程池七个参数详解
/** * 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
HashTable源码解析
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
750条   上一页 1 ... 4 5 6 7 8 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!