郭克华老师java视频教程下载地址(J2ME 和J2EE)
1.j2ee
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/00.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/01.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/02.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/03.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/04.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/05.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/06.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/07.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/08.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/09.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/10.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/11.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/12.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/13.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/14.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/15.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/16.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/17.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/18.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/19.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/20.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/21.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/22.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/23.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/24.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/25.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/26.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/27.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/28.wmv
http://0444.xue8xue8.com/computer/program/java/j2eeshuren/29.wmv
http://044
相关文档:
List的用法
List包括List接口以及List接口的所有实现类。因为List接口实现了Collection接口,所以List接口拥有Collection接口提供的所有常用方法,又因为List是列表类型,所以List接口还提供了一些适合于自身的常用方法,如表1所示。
表1 List接口定义的常用方法及功能
从表1可以看出,List接口提供的适合于自身的 ......
Java中提供了Class类,可以通过Class类获取类的定义信息,包括包名、类名、类上的注释(Annotation)、类的修饰符、父类、继承的接口、构造方法、成员变量和成员方法。这些信息分别使用java.lang.annotation.Annotation、 java.lang.reflect.Constructor、java.lang.reflect.Field、java.lang.reflect.Method、java.lang.re ......
什么是堆栈,关于这个名词,我在百度,google搜索了半天,也没有发现一个比较权威的解释,还有许多资料语焉不详,就以维基百科的解释为准吧,和我记忆中的一致。
堆栈(英文:stack),中国大陆作堆栈,台湾作堆叠,在计算机科學中,是一種特殊的串列形式的資料結構,它的特殊之處在� ......
什么是异常?
异常(exception)应该是异常事件(exceptional event)的缩写。
异常定义:异常是一个在程序执行期间发生的事件,它中断正在执行的程序的正常的指令流。
当在一个方法中发生错误的时候,这个方法创建一个对象,并且把它传递给运行时系统。这个对象被叫做异常对象,它包含了有关错误的信息,这些信息包括错 ......
通常情况下,我们在编写java文件时,会有引用到自已定义的一些类,如果按通常的javac *.java的形式来编译会出现找不到符号的错误。
以下提供了两种方法,以供参考
假如在d:\web\wsh下有a.java和b.java两个文件,在b.java文件中有引用了a.java。下面是编译的方法
方法一:
进入d:\web\wsh下: javac a.java
然后退出wsh� ......