hotspot/src/share/vm/prims/jvmtiImpl.cpp
// Constructor for object getter
VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
{- -------------------------------------------
(1) フィールドの初期化
---------------------------------------- -}
: _thread(thread)
, _calling_thread(calling_thread)
, _depth(depth)
, _index(index)
, _type(T_OBJECT)
, _set(false)
, _jvf(NULL)
, _result(JVMTI_ERROR_NONE)
{
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.