Top


定義場所(file name)

hotspot/src/share/vm/runtime/vm_version.cpp

名前(function name)

const char* Abstract_VM_Version::vm_vendor() {

本体部(body)

    #ifdef VENDOR
      return XSTR(VENDOR);
    #else
      return JDK_Version::is_gte_jdk17x_version() ?
        "Oracle Corporation" : "Sun Microsystems Inc.";
    #endif
    }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.