这里紧接着上一遍文章
新建一个Person类package com.nerd.entity;
import java.util.HashSet;
import java.util.Set;
public class Person {
public Set getEvents() {
return events;
}
public void setEvents(Set event...
分类:
Web程序 时间:
2014-12-31 18:30:20
阅读次数:
127
Arguments are the values you pass to a Perl script. Each value on the command line after the name of the script will be assigned to the special variab...
分类:
其他好文 时间:
2014-12-27 18:53:15
阅读次数:
156
“assigned”
主键由外部程序负责生成,在 save() 之前指定一个。
“hilo”
通过hi/lo 算法实现的主键生成机制,需要额外的数据库表或字段提供高位值来源。
“seqhilo”
与hilo 类似,通过hi/lo 算法实现的主键生成机制,需要数据库中的 Sequence,适用于支持 Se...
分类:
Web程序 时间:
2014-12-26 13:01:51
阅读次数:
177
题目:(Greedy)There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the foll...
分类:
其他好文 时间:
2014-12-26 06:10:48
阅读次数:
261
There are N children standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following req...
分类:
其他好文 时间:
2014-12-12 06:43:14
阅读次数:
234
uCOS_ii在进行Task Switch时,会选择当前Ready队列里优先级最高的Task来运行。那么uCOS_ii是如何找到优先级最高的Task的呢?
首先从以下代码片段入手进行分析,
#define OS_LOWEST_PRIO 63u /* Defines the lowest priority that can be assigned ......
分类:
其他好文 时间:
2014-12-10 18:13:23
阅读次数:
200
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:
其他好文 时间:
2014-12-03 13:58:52
阅读次数:
150
今天犯了个错误 generator节点class属性有这么几个值(主键生成策略方案): assigned:由用户指定主键值 sequence:由oracle序列生成 increment:对类型为long,short,int的主键,以自增长的方式生成主键值,增量为1 identity:在or...
分类:
其他好文 时间:
2014-12-03 12:08:01
阅读次数:
216
缘起最近我回看以前记的关于Notes的笔记,发现在Notes bugs类别下,两条编号间隔一的竟然是相差无几的内容。2. 'Type mismatch' occurs if an nested array e.g. when an item of ColumnValues is an array, is assigned to a variant or passed as an argument ...
分类:
其他好文 时间:
2014-12-02 11:50:08
阅读次数:
217
[LeetCode] Candy (分糖果),时间复杂度O(n),空间复杂度为O(1),且只需遍历一次的实现原题:There areNchildren standing in a line. Each child is assigned a rating value.You are giving c...
分类:
其他好文 时间:
2014-12-02 01:33:37
阅读次数:
309