Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off th ...
分类:
其他好文 时间:
2016-08-13 10:03:42
阅读次数:
205
JSTL 核心标签库标签共有13个,功能上分为4类: 1.表达式控制标签:out、set、remove、catch 2.流程控制标签:if、choose、when、otherwise 3.循环标签:forEach、forTokens 4.URL操作标签:import、url、redirect 使用标 ...
分类:
其他好文 时间:
2016-08-13 06:29:14
阅读次数:
231
这篇文章来自iOS Tutorial Team 成员 Marcelo Fabri, 他是 Movile 的一个iOS开发者. Check out his personal website or follow him on Twitter.原文地址 当我们开发iOS应用时,好的性能对我们的App来说是 ...
分类:
移动开发 时间:
2016-08-13 01:15:27
阅读次数:
292
Window Live Writer离线编辑测试 Window Live Writer离线编辑测试 测试 class Hello { public static void main(String[] args) { System.out.println("Hello World!"); } } ...
Problem Description A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = <x1, x2, ...
分类:
其他好文 时间:
2016-08-12 19:51:57
阅读次数:
141
git checkout ...: Check out a particular branch or a tagged version of the code to hack on. JavaScript使用闭包或者回调来响应非同步的有意义的数据 ...
分类:
其他好文 时间:
2016-08-12 19:47:07
阅读次数:
124
在使用vim阅读c/c++代码的时候,代码跳转很重要, 在学习redis代码的时候遇到这个问题。 网上查找之后通过实践发现cscope比较好用,可以很方便的实现跳转 1. 安装cscope 2. 生成tag文件cscope.out 在源码目录下执行如下命令生成tag文件 3. vim中cscope插 ...
分类:
编程语言 时间:
2016-08-12 19:41:31
阅读次数:
128
1.adb server is out of date.killing的解决办法:http://jingyan.baidu.com/article/d621e8da0dee022865913fce.html 2.GENYMOTION问题之an error occurred while deployi ...
分类:
其他好文 时间:
2016-08-12 15:20:11
阅读次数:
520
public class Demo02 { public static void main(String[] args) { int i1 = 128; int i2 = 129; System.out.println(Integer.toBinaryString(i1)); System.out. ...
分类:
编程语言 时间:
2016-08-12 15:09:05
阅读次数:
163
内部类,顾名思义,就是放在一个类内部的类,一般情况下我们比较少用,但是内部类在实现逻辑的隐藏,多重继承方面有着不小的用途。内部类,主要区分如下 1. 静态内部类 可以将该内部类看作静态方法,可以访问外部类静态变量和静态方法,但是不能访问外部类实例变量和实例方法 实例化方式:Out.In in = n ...
分类:
其他好文 时间:
2016-08-12 01:23:28
阅读次数:
134