arrayOopDesc クラスの具象サブクラスの1つ.
このクラスは「ポインタ型(オブジェクト or 配列)の配列」を表す.
((cite: hotspot/src/share/vm/oops/objArrayOop.hpp))
// An objArrayOop is an array containing oops.
// Evaluating "String arg[10]" will create an objArrayOop.
class objArrayOopDesc : public arrayOopDesc {
以下の箇所で生成されている.
なお, 実際の使用箇所では objArrayOop という別名(もしくはラッパークラス)で使われることが多い (See: objArrayOop).
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.