Java的5个标签库:核心(c)、格式化(fmt)、函数(fn)、SQL(sql)、XML(x) SQL、XML库不推荐使用 核心标签库(c) <c:out> <c:if> <c:choose>、<c:when>、<c:otherwise> <c:forEach>、<c:forTokens> <c: ...
分类:
Web程序 时间:
2018-04-29 19:59:08
阅读次数:
182
Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used. Note: Example 1: Example 2: ...
分类:
其他好文 时间:
2018-04-15 11:58:07
阅读次数:
124
You are given a program you want to execute as a set of tasks organized in a dependency graph. The dependency graph is a directed acyclic graph: each ...
分类:
编程语言 时间:
2018-04-14 23:48:45
阅读次数:
260
Hashtable 与 HashMap 的简单比较 HashMap源码: HashMap key为null时,通过单独的hash()方法来判断,若为null,则值为0; value为null时,源码分析,没有进行对value的判断。 HashTable源码: HashTable , key会在方法中 ...
分类:
其他好文 时间:
2018-04-13 14:28:53
阅读次数:
160
build step https://jenkins.io/doc/pipeline/steps/pipeline-build-step/#build-build-a-job 一个任务的执行触发,另外一个任务的执行,以代码的形式。 build: Build a job Triggers a new ...
分类:
其他好文 时间:
2018-04-06 00:14:02
阅读次数:
279
where()的用法 首先强调一下,where()函数对于不同的输入,返回的只是不同的。 1当数组是一维数组时,返回的值是一维的索引,所以只有一组索引数组 2当数组是二维数组时,满足条件的数组值返回的是值的位置索引,因此会有两组索引数组来表示值的位置 例如 对numpy标准库里的解释做一个介绍: n ...
分类:
编程语言 时间:
2018-03-27 14:42:23
阅读次数:
1109
Find the target key K in the given binary search tree, return the node that contains the key if K is found, otherwise return null. Assumptions There a... ...
分类:
其他好文 时间:
2018-03-27 10:22:51
阅读次数:
130
Compare two version numbers version1 and version1.If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0. You may assum ...
分类:
其他好文 时间:
2018-03-25 12:39:15
阅读次数:
174
```
; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www] ; Per... ...
分类:
Web程序 时间:
2018-03-24 13:33:20
阅读次数:
310
JSTL_XML 一:说明 二:XML标记库 Xml标记库主要功能就是为在jsp页面中操作xml提供便利支持,本博文不做详解,<x:out>,<x:set>,<x:if>,<x:when>,<x:choose>,<x:forEach>,<x:otherwise>,<x:param>标记与core标记 ...
分类:
Web程序 时间:
2018-03-21 14:02:46
阅读次数:
233