日期:2014-05-20 浏览次数:20645 次
package test.c ; public class Demo{ public String getContent(){ return "MLDN LXH" ; } };
package org.lxh.demo08.b ; // 放在不同的包中 import test.c.* ; // 导入不同包中的Demo类 public class ImportDemo01{ public static void main(String args[]){ System.out.println(new Demo().getInfo()) ; } };