// This constructor is used only by SystemDictionaryShared::clone_dumptime_tables(). // See comments there about the need for making a deep copy.
DumpTimeLambdaProxyClassInfo::DumpTimeLambdaProxyClassInfo(const DumpTimeLambdaProxyClassInfo& src) {
_proxy_klasses = NULL; if (src._proxy_klasses != NULL && src._proxy_klasses->length() > 0) { int n = src._proxy_klasses->length();
_proxy_klasses = new (mtClassShared) GrowableArray<InstanceKlass*>(n, mtClassShared); for (int i = 0; i < n; i++) {
_proxy_klasses->append(src._proxy_klasses->at(i));
}
}
}
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.