<build>
?????<plugins>
?????????<plugin>
?????????????<groupId>org.apache.maven.plugins</groupId>
?????????????<artifactId>maven-compiler-plugin</artifactId...
分类:
其他好文 时间:
2014-08-03 12:56:25
阅读次数:
230
1版本类型1.1正式版本Enhance:增强版或者加强版属于正式版Fullversion:完全版属于正式版Release:发行版,有时间限制Upgrade:升级版Retail:零售版Plus:增强版,不过这种大部分是在程序界面及多媒体功能上增强。1.2测试版本Alphal:内部测试版Beta:外部测...
分类:
其他好文 时间:
2014-08-03 12:34:15
阅读次数:
266
一、类载入器首先来看一下java程序的运行过程。 从这个框图非常easy大体上了解java程序工作原理。首先,你写好java代码,保存到硬盘其中。然后你在命令行中输入javac YourClassName.java此时,你的java代码就被编译成字节码(.class).假设你是...
分类:
编程语言 时间:
2014-08-02 15:18:03
阅读次数:
283
Search for a Range1.最简单的想法,用最普通的二分查找,找到target,然后向左右扩张,大量的重复的target,就会出现O(n)效率。 class Solution { public int[] searchRange(int[] A, int target) { ...
分类:
其他好文 时间:
2014-08-02 15:12:14
阅读次数:
270
这个问题实际上很简单,但是之前也让我迷惑了一下。如果像我之前这篇日志里写的,如果在后面加上junitreport:
则只是生成xml格式的report,但是如果是在batchtest下面,如果所有的测试用例都执行完了,就会生成一系列的HTML报告,举例:
<target name="test"
depends="compile-tests"
...
分类:
Web程序 时间:
2014-08-02 12:49:33
阅读次数:
240
$ adb devices | tail -n +2 | cut -sf 1 | xargs -I X adb -s X install pathto/myapp-release.apk
分类:
移动开发 时间:
2014-08-02 12:30:23
阅读次数:
181
AreaDescriptionBeing well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its b...
分类:
其他好文 时间:
2014-08-02 12:14:33
阅读次数:
343
@Retention(RetentionPolicy.RUNTIME)//@Retention元注释说明该注释存活期间在运行期间
@Target({ElementType.TYPE,ElementType.METHOD})//@Target元注释说明该注释适用于类接口枚举和方法上
public@interfacemyAnnotation{
//为注释定义属性
Stringname()default"ztt";//de..
分类:
其他好文 时间:
2014-08-02 07:47:03
阅读次数:
246
[liuhan@liuhan-pc ~]$ cat /etc/issueFedora release 20 (Heisenbug)Kernel \r on an \m (\l)[liuhan@liuhan-pc ~]$ cat /proc/versionLinux version 3.15.6-20...
分类:
其他好文 时间:
2014-08-02 04:00:43
阅读次数:
185
题目:Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.Each ....
分类:
编程语言 时间:
2014-08-02 01:48:12
阅读次数:
246