Creating a Makefile and Using the bmake Utility The MDL development environment includes a utility called bmake that produces executable images from m ...
分类:
其他好文 时间:
2020-05-02 16:59:10
阅读次数:
103
1.参数说明 INCLUDES include /path/to/local.conf ## 引入多个配置文件,如果写在主conf 的开头,会被主conf后面的参数覆盖,如果想引入的配置文件覆盖主conf,就把该参数写到末尾 NETWORK bind 192.168.1.100 10.0.0.1bi ...
分类:
其他好文 时间:
2020-05-02 14:39:36
阅读次数:
48
js原型链 js原型链是什么? 在思考这个问题的时候,我们可能会有很多概念,【链子】、【祖先】、【father】 1. 要理解 首先要理解 对象的属性 都指向其他对象,Object.prototype 的 例外。 2. 单纯从 链 这个这个词来理解,js原型链更像是一种copy 或 引用。 简单理解 ...
分类:
Web程序 时间:
2020-04-30 10:06:09
阅读次数:
77
赶紧阅读读此文,我保证,在过去的几个月里我,我确定我在数组问题上犯过4次错误。于是我写下这篇文章,阅读这篇文章可以让你更准确的使用javascript数组的一些方法 使用Array.includes替代 Array.indexOf “如果你在数组中搜索某个元素,那么请使用Array.indexOf” ...
分类:
编程语言 时间:
2020-04-24 01:54:14
阅读次数:
77
<build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </i ...
分类:
其他好文 时间:
2020-04-20 18:48:48
阅读次数:
98
Redis配置文件 Redis.conf详解 一:单位 1.对大小写不敏感 二:包含____INCLUDES 1.类似于spring配置的import,include 三:网络____NETWORK bind 127.0.0.1 # 绑定的ip protected-mode yes # 保护模式 p ...
分类:
其他好文 时间:
2020-04-20 16:26:31
阅读次数:
85
Given a binary tree, return the values of its boundary in anti-clockwise direction starting from root. Boundary includes left boundary, leaves, and ri ...
分类:
其他好文 时间:
2020-04-15 21:10:31
阅读次数:
65
有些类库我们会放在本地resources目录,当然如果公用仓库里有它,并且是免费的,还是建议直接引用仓库里的,这样在版本更新上和源代码体积上都是有优势的,下面解决引用本地jar的方法。 资源文件 在pom里添加引用 pom里添加本地文件支持 这样,本地的jar包就算了引到项目里了。 ...
分类:
编程语言 时间:
2020-04-08 16:04:37
阅读次数:
68
JS字符串函数: 查找: indexOf(s,start) //查找某个字符串首次出现的位置,默认start=0,没有找到返回-1 eg:str.indexOf("hi") lastIndexOf(s,start)//同上,查找最后出现的位置 search() includes() match() ...
分类:
Web程序 时间:
2020-03-29 10:35:28
阅读次数:
88
includes() 方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回false。 const array1 = [1, 2, 3]; console.log(array1.includes(2));// expected output: true const ...
分类:
其他好文 时间:
2020-03-24 18:43:27
阅读次数:
53