Below is a simple example of a CORBA program download the source file b1. prodUCe a idl file like this/b hello.idl module HelloApp { interface Hello { ...[ 查看全文 ]
// The most basic Java program public class HelloWorld { public static void main(String args[]) throws Exception { System.out.println("Hello World!"); } } [ 查看全文 ]
通过反射构造内部类对象 首先在 javalang 包下写一个包含内部类的类: package javalang;public class Outer { public static class Inner1{}} 注意这个类是 public static,后面我们慢慢把这些修饰符去掉。 要想通过反射来创建 Inner1 对象,首先要获得 Inner1 的 Class 对象。我们在 Outer 中写上 main 方法: public class Outer { public static class Inner1{}public static void main(String[]...[ 查看全文 ]