码迷,mamicode.com
首页 >  
搜索关键字:javascript dom对象    ( 62919个结果
maven使用备忘
maven的使用
分类:其他好文   时间:2014-04-27 22:38:18    阅读次数:474
oracle热点表online rename
对于在线的繁忙业务表的任何操作都可能带来意想不到的风险。一张业务表,对partition key进行升位,其步骤是:rename原表新建临时表交换分区到临时表升位临时表的字段的长度交换临时表到第二张临时表rename第二种临时表为业务表整个的操作过程如果顺利,预计在10s左右,如果放在文件中,速度会...
分类:数据库   时间:2014-04-27 22:32:31    阅读次数:776
关于this
Untitled Document
分类:其他好文   时间:2014-04-27 22:30:30    阅读次数:398
Struts2 + Spring 学习(一)搭建struts开发环境
·为Web应用增加Struts2支持1. 登陆struts2官网下载struts2的最新版,本文所用的是Struts 2.3.16.2我们所下载的压缩包内内容应给如下其中,apps包含了struts2的实例应用,docs包含了struts2的相关文档,lib包含了Struts2框架的核心类库以及st...
分类:编程语言   时间:2014-04-27 22:26:38    阅读次数:626
c++局部变量经典举例
局部变量: 在函数内部声明的变量为局部变量,局部变量的意思即该变量只存活在该函数中,假如该函数调用结束,那么该变量的寿命也结束了.举例:#includeusing namespace std;void swap(int ,int );//两个参数变量可以省略int main(){ int x=...
分类:编程语言   时间:2014-04-27 22:20:36    阅读次数:562
归并排序
#includeusing namespace std;#define MAX 10000int array[MAX]; //待排序数组const int MAXN=0x7fffffff;void Merge(int array[],int start, int mid, int end) { .....
分类:其他好文   时间:2014-04-27 22:18:38    阅读次数:484
Solr搜索结果说明 (转)
在admin页面,输入相关内容后,会返回xml格式的内容。说明如下: 0 3 on 10 0 monitor 2.2 0.5747526 ...
分类:其他好文   时间:2014-04-27 22:10:48    阅读次数:600
素数求和
#include using namespace std;int fun(int a){ if(a==1) return 0; for(int i=2;i>M; while(M--) { int i,sum=0; cout>N; ...
分类:其他好文   时间:2014-04-27 22:06:54    阅读次数:578
Sort List
归并排序。
分类:其他好文   时间:2014-04-27 21:59:05    阅读次数:517
《Cracking the Coding Interview》——第16章:线程与锁——题目1
2014-04-27 19:09题目:线程和进程有什么区别?解法:理论题,操作系统教材上应该有很详细的解释。我回忆了一下,写了如下几点。代码: 1 // 16.1 What is the difference between process and thread? 2 Answer: 3 P...
分类:编程语言   时间:2014-04-27 21:53:11    阅读次数:668
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!