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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


GarbageCollectorMXBeanjava.lang.management

Java 5.0

This MXBean interface allows
monitoring of the number of
garbage collections that have occurred and the approximate time they
consumed in milliseconds. The methods return -1 to indicate that the
garbage collector does not maintain those statistics. Note that VM
implementations commonly have more than one garbage collector and use
different collection strategies for new objects and old objects. Note
also that this is a subinterface of
MemoryManagerMXBean.


Figure 10-85. java.lang.management.GarbageCollectorMXBean

public interface

GarbageCollectorMXBean extends MemoryManagerMXBean {
// Public Instance Methods
long

getCollectionCount ( );
long

getCollectionTime ( );
}



    / 1191