上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 阅读全文
posted @ 2015-10-27 20:04 業&裳 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-10-26 20:46 業&裳 阅读(121) 评论(0) 推荐(0) 编辑
摘要: //表空间CREATE SMALLFILE TABLESPACE "ZUOYE" DATAFILE 'D:\ORACLE\11G\ORADATA\ORCL\ZUOYE.DBF' SIZE 100M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED LOGGING E... 阅读全文
posted @ 2015-10-25 16:15 業&裳 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-10-23 21:01 業&裳 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-10-22 19:20 業&裳 阅读(89) 评论(0) 推荐(0) 编辑
摘要: import java.io.*;import text.MyException;public class Yichang { public static void main(String[] args) { //捕获异常 //抛出异... 阅读全文
posted @ 2015-10-19 20:59 業&裳 阅读(344) 评论(0) 推荐(0) 编辑
摘要: package text;import java.io.*;//文本文件操作类public class file { private String fileName; public String getFileName() { return fileN... 阅读全文
posted @ 2015-10-19 20:59 業&裳 阅读(177) 评论(0) 推荐(0) 编辑
摘要: package dxc;public class t20151019 { public static void main(String[] args) throws InterruptedException { // 调用了main方法 就是启动了单线程 ... 阅读全文
posted @ 2015-10-19 20:58 業&裳 阅读(124) 评论(0) 推荐(0) 编辑
摘要: package text;import java.util.*;import javax.swing.text.html.HTMLDocument.Iterator;public class t20151016s { public static void main(String[] args)... 阅读全文
posted @ 2015-10-16 20:57 業&裳 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 相比于线性表顺序结构,操作复杂。由... 阅读全文
posted @ 2015-10-16 20:55 業&裳 阅读(245) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页