create sequence SEQ_ERRORID minvalue 1 maxvalue
99999999 start with 1000 increment by 1 nocache order; create or replace trigger
tri_ERRORINFO_...
分类:
其他好文 时间:
2014-05-01 13:32:20
阅读次数:
335
import java.io.*;import java.util.*;import
java.util.concurrent.*;public class SearchFile{ public static void main(String
... strings) { final int FI....
分类:
其他好文 时间:
2014-05-01 13:18:50
阅读次数:
253
开发中遇到令人蛋疼的问题:只能在执行Render()的过程中调用RegisterForEventValidation当出现的异常的提示:异常详细信息:
System.InvalidOperationException:只能在执行Render()的过程中调用RegisterForEventValida...
分类:
其他好文 时间:
2014-05-01 13:16:15
阅读次数:
400
iterator的hasNext() 和
next()方法用于enumeration的hasMoreElements() 和 nextElement()iterator it =
a.itreator();Enumeration en = new Enumeration(){@Overridepub...
分类:
其他好文 时间:
2014-05-01 12:59:57
阅读次数:
358
内部类 定义在外部类的内部, 编译后是独立存在的类
可以访问外部类的私有成员,且不破坏封装成员内部类 用"外部类类名.this"访问外部类的当前对象 创建对象:先创建外部类对象,再通过"外部类对象.new
内部类类名"创建内部类对象静态内部类 只能访问外部类的静态成...
分类:
编程语言 时间:
2014-05-01 12:54:49
阅读次数:
407
list集合转换JSON出错误意思是:对象”是一个数组。使用jsonarray代替。解决方法:将JSONObject替换为JSONArray代码:JsonConfig jsonConfig = new JsonConfig();jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);JSONArray json = ...
分类:
Web程序 时间:
2014-04-29 13:43:21
阅读次数:
1280
Corn Fields
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 6460
Accepted: 3436
Description
Farmer John has purchased a lush new rectangular pasture compos...
分类:
其他好文 时间:
2014-04-29 13:37:20
阅读次数:
339
在使用JSONObject.fromObject的时候,出现“There is a cycle in the hierarchy”异常。意思是出现了死循环,也就是Model之间有循环包含关系;解决办法:使用setCycleDetectionStrategy防止自包含代码:JsonConfig jsonConfig = new JsonConfig();jsonConfig.setCycleDete...
分类:
其他好文 时间:
2014-04-29 13:32:21
阅读次数:
346
The plan of city rebuild
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 616 Accepted Submission(s): 215
Problem Description
New...
分类:
其他好文 时间:
2014-04-29 13:22:21
阅读次数:
438
刚看了看设计模式,真是费了好多的脑细胞。
想着想着就到了食堂。O(∩_∩)O哈!正是长身体的时候(大神勿喷),
一定要多吃点。于是我打了一份米饭,然后又端着盛米饭的盘子买了一份凉菜
,看着还不是很够,就又端着这个盘子买了一条最爱吃的鱼。
-----装饰模式!
饭 meal=new 饭("晚饭");
米饭rice=new米饭();
菜vegetables= new 菜();
鱼fish = new 鱼();
rice.Decorate(meal);
vegetables.Decorate(rice);...
分类:
其他好文 时间:
2014-04-29 13:13:20
阅读次数:
318