选中项目--右键--Export--Java--Javadoc—Finish
导出项目class文件
首先选中项目名---左键--->Export--->Java--->JAR file--->Next--->然后定义导出路径Browse--->Finish
导入项目class文件
//导入class文件,到另一个项目中
复制jar包--->粘贴到项目中--->Build Path--->Add to Build Path
package cn.itcast_02;
import com.lxg_02.Animal;
import com.lxg_02.Cat;
import com.lxg_02.Dog;
public class AnimalDemo {
public static void main(String[] args) {
// 抽象类不能实例化
// Animal a = new Animal();
Animal a = new Cat();
a.eat();
a.sleep();
System.out.println("--------------------");
a = new Dog();
a.eat();
a.sleep();
System.out.println("--------------------");
// 想使用跳高功能
Dog d = (Dog) a;
d.eat();
d.sleep();
d.jump();
}
}