Athena Framework
Tags
ActionScript AIR ANT Apache ApacheFlex Array Athena Framework BlazeDS Chart DataGrid DataGridColumn DB2 Derby Eclipse ERwin Event Facebook Facebook开发 Flash Builder Flex Flex Builder Flex右键 Java JDBC Linux MySQL Oracle PHP SQL SVN TextArea Tools Tree Twitter WordPress XML ZDSoft 一日一类 千斤顶 基础教育 教育改革 新课改 正则表达式 浙大网络 软件工程-
Archives
Category Archives: Java
Using Inner class in Java
Here is the code:
package innerClasds.scjp.liguoliang.com;
import java.io.Serializable;
public class TestInnerClass {
private String name = “var+T
Java: Using Assertion in Eclipse
Assertion:
public static void main(String[] args) {
int x = 10;
assert x==100:”assertion failed!”;
}
How to determine assertion is enabled or
About Exceptions in Java
Exceptions in Java:
&nbs
Overloading and overriding method call
Overloading method will be determined by reference type, but override method will be determined by the actual object tyep. property is determined by
Java method invoked sequence
Static block / variable;
Instance block / variable;
Constructor;
public class StaticTest {
public static void main(String[] args) {
// System.out.p


