example3.java
来自「Java样例程序集合:2D」· Java 代码 · 共 26 行
JAVA
26 行
import java.beans.beancontext.*;import java.io.*;/** * An example of how to use the instantiateChild() convenience method * to create a bean automatically nested into a bean context. */public class Example3 { public static void main(String[] args) { BeanContextSupport context = new BeanContextSupport(); System.out.println("Number of children nested into the context: " + context.size()); BeanContextChildSupport child = null; try { child = (BeanContextChildSupport)context.instantiateChild("java.beans.beancontext.BeanContextChildSupport"); } catch(IOException e){ System.out.println("IOException occurred: " + e.getMessage()); } catch(ClassNotFoundException e){ System.out.println("Class not found: " + e.getMessage()); } System.out.println("Number of children nested into the context: " + context.size()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?