Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


CompilationMXBeanjava.lang.management

Java 5.0

This MXBean interface defines
methods for querying the just-in-time compiler of the
Java virtual machine. getName(
) returns an identifying name for the
compiler. If the implementation tracks compilation time,
getTotalCompilationTime( ) returns the approximate
total compilation time in milliseconds.

public interface

CompilationMXBean {
// Public Instance Methods
String

getName ( );
long

getTotalCompilationTime ( );
boolean

isCompilationTimeMonitoringSupported ( );
}


Returned By


ManagementFactory.getCompilationMXBean( )


    / 1191