摘要: import java.util.*;public class ObjectTestDrive { public static void main(String[] args) { ArrayList<Animal> alist = new ArrayList<Animal>(); Dog d = new Dog(); alist.add(d); Animal a = alist.get(0); a.yield(); System.out.println(a instanceof Dog); }}c... 阅读全文
posted @ 2013-01-03 22:42 icwzhang 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1、How do I install .deb file?To install package called package.deb type the following command: Go to directory where package.deb is kept. For example if it is in /tmp directory:$ cd /tmp$ sudo dpkg -i package.deb 阅读全文
posted @ 2013-01-03 13:10 icwzhang 阅读(114) 评论(0) 推荐(0) 编辑