类class、对象object、实例instance,这些名称就可以了,要有其他名称就有点故弄玄虚、不知所云了

解决方案 »

  1.   

    这是设计模式的基础,建议看THINK IN JAVA
    努力。
      

  2.   

    类(Class):是一种数据类型
    对象(Object):是类这种数据类型的对象对象是类的实例。
      

  3.   

    from learning java
    Objects in Java are allocated from a system heap space, much like malloc'ed storage in C or C++.Unlike in C or C++, however, we needn't manage that memory ourselves. Java takes care of memory allocation and deallocation for you. Java explicitly allocates storage for an object when you create it with the new operator. More importantly, objects are removed by garbage collection
    when they're no longer referenced.
      

  4.   

    A class is a blueprint for a part of an application; it lists methods and variables that go into making
    up that part. Many individual working copies of a given class can exist while an application is
    active. These individual incarnations are called instances of the class, or objects. Two instances of a
    given class may contain different data, but they always have the same methods.