上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
  2015年5月28日
摘要: 修改字段类型: alter table 表名 modify column_name varchar2(32); alter table 表名 modify (column_name1 varchar(20) default null,column_name2 varchar2(30)); ---... 阅读全文
posted @ 2015-05-28 10:23 _故乡的原风景 阅读(201) 评论(0) 推荐(0) 编辑
  2015年5月26日
摘要: 1、dom 文档对象document 2、bom 浏览器对象 window Screen History 3、根据浏览器设置样式 $(document).ready(function(){ if (navigator.userAgent.i... 阅读全文
posted @ 2015-05-26 00:10 _故乡的原风景 阅读(129) 评论(0) 推荐(0) 编辑
  2015年5月20日
摘要: 1、交集 public static void main(String[] args) { int[] array1 = {1,2,3,4,5,6}; int[] array2 = {2,3,4,8}; List list = new ArrayL... 阅读全文
posted @ 2015-05-20 22:10 _故乡的原风景 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1、参数详解 http://www.csdn123.com/html/itweb/20131029/192741.htm 2、设置动态列 $.post("/userProfileListStatistics/userProfileList.c", {monitorType: "", dis... 阅读全文
posted @ 2015-05-20 16:11 _故乡的原风景 阅读(151) 评论(0) 推荐(0) 编辑
  2015年5月11日
摘要: 示例1——抑制单类型的警告: @SuppressWarnings("unchecked")public void addItems(String item){ @SuppressWarnings("rawtypes") List items = new ArrayList(); ... 阅读全文
posted @ 2015-05-11 14:44 _故乡的原风景 阅读(196) 评论(0) 推荐(0) 编辑
  2015年5月5日
摘要: 1、查询表被哪些视图引用 Select owner, object_type, object_name, object_id, status from sys.DBA_OBJECTS where object_id in (Select object_id ... 阅读全文
posted @ 2015-05-05 17:33 _故乡的原风景 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、使用静态内部类 2、先new用外部类 3、用外部类的方法返回内部类对象 class OuterClass { public static class InnerClassA { public InnerClassA()... 阅读全文
posted @ 2015-05-05 14:26 _故乡的原风景 阅读(1288) 评论(0) 推荐(0) 编辑
  2015年4月25日
摘要: 方式一 : 通过使用AutoFormElement的ID获取他们的值,实现Button的onClick事件: 1 var value = this.get("#AutoFromElementId.value"); 2 dorado.MessageBox.alert(value); 设置数据方... 阅读全文
posted @ 2015-04-25 09:28 _故乡的原风景 阅读(548) 评论(0) 推荐(0) 编辑
  2015年4月1日
摘要: 1、要有继承 2、要有重写 3、父类引用指向子类对象 阅读全文
posted @ 2015-04-01 22:05 _故乡的原风景 阅读(207) 评论(0) 推荐(0) 编辑
  2015年3月10日
摘要: 匹配整数和浮点数:^[+-]?([0-9]*\.?[0-9]+|[0-9]+\.?[0-9]*)([eE][+-]?[0-9]+)?$ 阅读全文
posted @ 2015-03-10 16:07 _故乡的原风景 阅读(110) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页