// ciArrayKlass // // This class, and its subclasses represent Klass*s in the // HotSpot virtual machine whose Klass part is an ArrayKlass. class ciArrayKlass : public ciKlass {
CI_PACKAGE_ACCESS private:
jint _dimension;
protected:
ciArrayKlass(Klass* k);
ciArrayKlass(ciSymbol* name, int dimension, BasicType bt);
public:
jint dimension() { return _dimension; }
ciType* element_type(); // JLS calls this the "component type"
ciType* base_element_type(); // JLS calls this the "element type" bool is_leaf_type(); // No subtypes of this array type.
// What kind of vmObject is this? bool is_array_klass() const { returntrue; }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.