摘要:
package com.sample.sping_ireport.cglib;import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;impor... 阅读全文
摘要:
package com.thinkgem.jeesite.qmy;import java.io.IOException;import com.opensymphony.module.sitemesh.util.CharArrayReader;import com.opensymphony.modul... 阅读全文
摘要:
package com.cn.test.meiju;//枚举的使用例子,必须创建枚举的构造函数public enum EnumTest { people1("1","lisi"),people2("1","zhangsan"); //需要定义带两个参数的构造 private fin... 阅读全文
摘要:
// CRegisterTest.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include #include using namespace std;//查看HKEY_CURRENT_USER主键下Software//武汉... 阅读全文
摘要:
1:LinkedHashMap的简介 Map 接口的哈希表和链接列表实现,具有可预知的迭代顺序。此实现与 HashMap 的不同之处在于,后者维护着一个运行于所有条目的双重链接列表。此链接列表定义了迭代顺序,该迭代顺序通常就是将键插入到映射中的顺序(插入顺序)。注意,如果在映射中重新插入 键,则插入... 阅读全文
摘要:
1:连表的特点 1、链表是一种存储结构,用于存放线性表 2、连表的结点是根据需要调用动态分配内存函数进行分配的,因此链表可随需要伸长缩短 在腰存储的数据个数未知的情况下节省内存。 3、链表的结点在逻辑上是连续的,但是各结点的内存通常是不连续的,因此不能立即被访问到, 只能从头结点开始逐结点访问。2:... 阅读全文
摘要:
#include "string.h"#include "ctype.h" #include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK... 阅读全文
摘要:
#include "stdafx.h"#include "stdio.h" #include "string.h"#include "ctype.h" #include "stdlib.h" #include "io.h" #include "math.h" #include... 阅读全文
摘要:
#include "stdafx.h"#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define... 阅读全文
摘要:
// CRegisterTest.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include #include using namespace std;//查看HKEY_CURRENT_USER主键下Software//武汉... 阅读全文