
career
bill1973
这个作者很懒,什么都没留下…
展开
-
软件外包企业名录
国家火炬计划软件产业基地名称 北京软件产业基地 杭州高新软件园原创 2007-10-21 07:47:00 · 14628 阅读 · 6 评论 -
java trick 2
public class AQuestion...{ private int i = j; private int j = 10; public static void main(String args[])...{ System.out.println((new AQuestion()).i); }} 1. Compiler err原创 2007-10-19 03:19:00 · 543 阅读 · 0 评论 -
java面试常见问题
1、面向对象的特征有哪些方面 1.抽象:抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面。抽象并不打算了解全部问题,而只是选择其中的一部分,暂时不用部分细节。抽象包括两个方面,一是过程抽象,二是数据抽象。2.继承:继承是一种联结类的层次模型,并且允许和鼓励类的重用,它提供了一种明确表述共性的方法。对象的一个新类可以从现有的类中派生,这个过程称为类继承。新类继转载 2007-09-27 10:31:00 · 774 阅读 · 0 评论 -
java trick
// What will happen when you attempt to compile and run the following code? class Base ...{ int i = 99; public void amethod() ...{ System.out.println("Base.amethod()"); }原创 2007-10-05 15:10:00 · 728 阅读 · 0 评论