1、变量标量类型(scalar)复合类型(composite)参照类型(reference)lob(large
object)--定义一个变长字符串v_ename VARCHAR2(10)--定义一个小数,范围-9999.99~9999.99v_sal
NUMBER(6,2)--定义一个小数,并给初...
分类:
数据库 时间:
2014-04-29 17:14:28
阅读次数:
582
不完整声明1234567891011121314151617181920212223242526/*
方法一 */struct tag_a{struct tag_b *bp; /* 这里struct tag_b 还没有定义,但编译器可以接受 */int
value;};struct tag_b{st...
分类:
其他好文 时间:
2014-04-29 16:54:53
阅读次数:
366
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.*
表示拦截...
分类:
编程语言 时间:
2014-04-29 16:25:10
阅读次数:
510
1.To survive among the ordinary,you must be strong
and independent!2.Be a unique person and develop skills so that nobody can
replace you!3.Since nans...
分类:
其他好文 时间:
2014-04-29 15:37:58
阅读次数:
567
2014-04-29
00:04题目:给定一个整数数组,找出所有加起来为指定和的数对。解法1:可以用哈希表保存数组元素,做到O(n)时间的算法。代码: 1 // 17.12
Given an array of integers and target value, find all pairs in ...
分类:
其他好文 时间:
2014-04-29 15:08:13
阅读次数:
469
转载:http://www.54mask.com/extjs-combobox-default-value.html相信很多人都遇到了在ExtJS框架中设置combo组件默认值的需求,ExtJS框架并没有提供现成的配置项或者方法来解决此问题,本人认为主要是因为此种需求的应用场景有限且很难达到适应于不...
分类:
Web程序 时间:
2014-04-29 11:32:46
阅读次数:
390
1.添加元素的时候,先取出数组,再向数组中添加元素:-
(void)addPeason:(AddressPeason*)peason{
if(![[peasongetName]isEqualToString:nil]) {
for(NSString*stringin[_peasonDiction.....
分类:
其他好文 时间:
2014-04-29 11:22:45
阅读次数:
535
1.Json 数据表示方式介绍
这个可以看之前的一个文章里面有说明:Java解析(读取)Json数据2.C++ Jsoncpp2.1 Jsoncpp介绍
(1)JsonCpp主要包含三种类型的class:Value Reader Writer; Json::Value是jsoncpp中最基...
分类:
编程语言 时间:
2014-04-29 11:18:46
阅读次数:
501
Visual Studio 2012太强大了,居然能自己会去提取Ext
JS的类的属性和方法,从而实现只能提示。下面就来介绍一下实现这个功能。在Visual Studio
2012中随便创建一个Web项目,我创建了一个空的Web项目,目录结构如下图所示:关键就是Scripts中的_reference...
分类:
Web程序 时间:
2014-04-29 11:18:46
阅读次数:
473
js 验证手机号码 //验证手机号 function isMobel(value) { if
(/^1[3-8]+\d{9}$/g.test(value)) { return true; } else { return false; } }
分类:
移动开发 时间:
2014-04-29 11:12:46
阅读次数:
369