What is Class Descriptor?

前端 未结 3 1285
既然无缘
既然无缘 2021-02-04 15:04

What is Class Descriptor?

Is it a Class object of a particular class?

3条回答
  •  無奈伤痛
    2021-02-04 15:37

    You've given very little context, but "class descriptor" can be a termed used to describe the data necessary to deserialize an object:

    http://java.sun.com/javase/6/docs/platform/serialization/spec/class.html

    In that case, a "class descriptor" is actually java.io.ObjectStreamClass. An ObjectStreamClass describes a class, but it is different from the class itself.

提交回复
热议问题