怎样使用自己的包
在一个工程 package gao;在另一个工程中 怎样才能使用gao当中的类 不用设置环境变量的使用方法
package s.b; public class s { void show() { System.out.println("yyyy"); } public static void main(String args[]) { s S = new s(); S.show(); } }
import s.b.*; public class main { public static void main(String args[]) { s S = new s(); S.show(); } }