java.lang.annotation包Annotation的基本原则:Annotation不能影响程序代码的执行,无论增加、删除Annotation,代码都始终如一的执行元注解:负责注解其他的注解@Documented@Inherited@Retention@Target------------...
分类:
编程语言 时间:
2014-10-14 00:48:07
阅读次数:
261
1.COMPUTE 一般用来计算目标端和源段的字段值,使用这个函数计算出目标端对应列想要的值Use the @COMPUTE function to return the value of an arithmetic expression to a target column. The value ...
分类:
其他好文 时间:
2014-10-14 00:30:27
阅读次数:
330
注解元数据分为4部分分别为Target,Documented,Inherited,Retention:
Target>指定被注解的注解只能使用在某个类型上;ElementType指定其类型:可以为方法
字段,类,返回值等等;
声明:
/**
* @author Lean @date:2014-10-13
*/
@Target(ElementType.METHOD)
pu...
分类:
编程语言 时间:
2014-10-13 21:24:26
阅读次数:
386
For example, given array S = {-1 2 1 -4}, and target = 1.The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).想来想去想不到什么好的解决方法,只好用最原始的方法,把所有可能的...
分类:
其他好文 时间:
2014-10-13 15:02:09
阅读次数:
208
今天用PHPCMS做一项目时,需要实现在首页调用全站文章的需求,但是PHPCMS没有现成的标签可以拿来用,看了下默认的首页模板,有这么一段代码:{pc:contentaction="hits"catid="6"num="10"order="viewsDESC"}{loop$data$r}<li><ahref="{$r[url]}"target="_blank">{$r..
分类:
其他好文 时间:
2014-10-13 12:06:29
阅读次数:
157
SGA_MAX_SIZE是从9i以来就有的作为设置SGA大小的一个参数,而SGA_TARGET则是从10g才有的一个新参数,作为配合10g自动管理SGA而出现的,下面以实验的方式,深入解析这2个参数的区别和作用
[oracle@bak ~]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Mon...
分类:
其他好文 时间:
2014-10-13 06:53:59
阅读次数:
352
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers....
分类:
其他好文 时间:
2014-10-12 18:25:38
阅读次数:
195
Follow up for "Search in Rotated Sorted Array":
What if duplicates are allowed?
Would this affect the run-time complexity? How and why?
Write a function to determine if a given target is in the...
分类:
其他好文 时间:
2014-10-12 16:06:48
阅读次数:
185
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic...
分类:
其他好文 时间:
2014-10-12 06:27:07
阅读次数:
248
iSCSI 主要是透过 TCP/IP 的技术,将储存设备端透过 iSCSI target (iSCSI 目标) 功能,做成可以提供磁盘的服务器端,再透过 iSCSI initiator (iSCSI 初始化用户) 功能,做成能够挂载使用 iSCSI target 的客户端,如此便能透过 iSCSI ...
分类:
其他好文 时间:
2014-10-11 22:15:16
阅读次数:
500