示例: 结果: ...
分类:
其他 时间:
2016-08-05 19:53:06
收藏:
0 评论:
0 赞:
0 阅读:
319
1. 通过数据状态(未处理、处理中、处理完成) 2. 分页 分层 3. 通过数据锁定 select for update (多线程安全) 4. 事务 实例: 用户表、兑换资格表、兑换资格统计表 1. 千万用户 2. 用户通过签到获取若干兑换资格 3. 定时任务在固定时间统计每个用户去年未兑换的资格总 ...
分类:
其他 时间:
2016-08-05 19:52:54
收藏:
0 评论:
0 赞:
0 阅读:
212
转载:http://blog.jobbole.com/76847/ 本文由 伯乐在线 - 李鼎 翻译。未经许可,禁止转载!英文出处:atlassian。欢迎加入翻译组。 转到分布式版本控制系统看起来像个令人生畏的任务,但不改变已用的工作流你也可以用上Git带来的收益。团队可以用和Subversion ...
分类:
其他 时间:
2016-08-05 19:52:46
收藏:
0 评论:
0 赞:
0 阅读:
216
1.MapAction.java import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.opensymphony.xwork2.Act ...
分类:
其他 时间:
2016-08-05 19:52:41
收藏:
0 评论:
0 赞:
0 阅读:
179
JavaScript Object-based JavaScript is almost entirely object-based. Object name Object property names are string keys. syntax dot notation (obj.x = 10 ...
分类:
Web开发 时间:
2016-08-05 19:52:24
收藏:
0 评论:
0 赞:
0 阅读:
282
console.time和console.timeEnd这两个方法可以用来让WEB开发人员测量一个javascript脚本程序执行消耗的时间。随着WEB应用越来越重要,JavaScript的执行性能也日益受到重视,WEB开发人员知道一些性能测试机器是必须的。今天要介绍的console.time和co ...
分类:
其他 时间:
2016-08-05 19:52:15
收藏:
0 评论:
0 赞:
0 阅读:
245
http://www.git-scm.com/download/ http://download.tortoisegit.org/ 指南 1. Getting Started2. Git Basics3. Git Branching4. Git on the Server5. Distributed ...
分类:
其他 时间:
2016-08-05 19:52:04
收藏:
0 评论:
0 赞:
0 阅读:
191
You live in a village but work in another village. You decided to follow the straight path between your house (A) and the working place (B), but there ...
分类:
其他 时间:
2016-08-05 19:51:57
收藏:
0 评论:
0 赞:
0 阅读:
209
1.1异常 异常向量: 异常向量表: 代码的编写 start.S文件 gboot.lds链接器脚本文件 makefile工程文件: ...
分类:
其他 时间:
2016-08-05 19:51:44
收藏:
0 评论:
0 赞:
0 阅读:
229
java [-options] -jar jarfile [args...] 点击查看获取可执行jar文件方法 ...
分类:
编程语言 时间:
2016-08-05 19:51:36
收藏:
0 评论:
0 赞:
0 阅读:
243
1. json是一种数据格式。 2.语法: 简单值 对象 数组 不支持变量,函数,或者对象实例,是一种结构化的数据格式。 3.JSON对象 有2个方法:stringify()和parse() 4. 序列号选项 》》1.第二个参数:过滤器 参数:数组/函数 JSON.stringigy(book,[" ...
分类:
Web开发 时间:
2016-08-05 19:51:26
收藏:
0 评论:
0 赞:
0 阅读:
344
...
分类:
Web开发 时间:
2016-08-05 19:51:16
收藏:
0 评论:
0 赞:
0 阅读:
272
http://docs.oracle.com/javaee/7/api/overview-summary.html ...
分类:
编程语言 时间:
2016-08-05 19:51:04
收藏:
0 评论:
0 赞:
0 阅读:
201
Where Tags Can Be Used The following sections describe where the tags can be used. Note that these tags can be used in all doc comments: @see, @since, ...
分类:
编程语言 时间:
2016-08-05 19:50:56
收藏:
0 评论:
0 赞:
0 阅读:
113
来自:简书 作者:知米丶无忌 链接:http://www.jianshu.com/p/40d4c7aebd66 引 如果对什么是线程、什么是进程仍存有疑惑,请先Google之,因为这两个概念不在本文的范围之内。 用多线程只有一个目的,那就是更好的利用cpu的资源,因为所有的多线程代码都可以用单线程来 ...
分类:
编程语言 时间:
2016-08-05 19:50:48
收藏:
0 评论:
0 赞:
0 阅读:
167
本文转载自:http://blog.csdn.net/ymangu666/article/details/39292651 应用程序可以通过对/dev 目录下的设备文件读写,从而访问实际的设备。1)每个设备文件对应有两个设备号:主设备号,次设备号① 主设备号:标识该设备的类型,也表示了该设备所使用的 ...
分类:
系统服务 时间:
2016-08-05 19:50:36
收藏:
0 评论:
0 赞:
0 阅读:
226
题意:平面上有n个点,一只蚂蚁从最左下角的点出发,只能往逆时针方向走,走过的路线不能交叉,问最多能经过多少个点。 思路:每次都尽量往最外边走,每选取一个点后对剩余的点进行极角排序。(n个点必定能走完,这是凸包的性质决定的) ...
分类:
编程语言 时间:
2016-08-05 19:50:27
收藏:
0 评论:
0 赞:
0 阅读:
208
AcTest.class 方法1:只要指定xml文件的在项目中的相对位置 方法2:从classpath位置读xml文件,即编译后class文件存放的位置.可以先将xml文件放入resources文件夹,然后将resources文件夹加入到classpath,在idea中:"File"->"Proje ...
分类:
其他 时间:
2016-08-05 19:50:07
收藏:
0 评论:
0 赞:
0 阅读:
187
调查 关键字:j2ee 、 javaee 发现 http://java.sun.com/xml/ns/j2ee 下有 web-app_2_4.xsd ◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆ http://java.sun.com/xml/ns/javaee 下有 web-app ...
分类:
编程语言 时间:
2016-08-05 19:49:46
收藏:
0 评论:
0 赞:
0 阅读:
951
Dispatcher是guava EventBus的事件分发器. Dispatcher是抽象类, 抽象方法: abstract void dispatch(Object event, Iterator<Subscriber> subscribers);定义了3个内部类: ImmediateDispa ...
分类:
其他 时间:
2016-08-05 19:49:35
收藏:
0 评论:
0 赞:
0 阅读:
280