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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Package java.lang.instrument

Java 5.0


This
package defines the API for instrumenting a Java VM by
transforming class files to add profiling support, code coverage
testing, or other features.

The -javaagent command-line option to the Java
interpreter provides a hook for running the premain(
) method of a Java instrumentation

agent . An Instrumentation
object passed to the premain( ) method provides an
entry point into this package, and methods of
Instrumentation allow loaded classes to be
redefined and ClassFileTransformer objects to be
registered for classes not yet loaded.


Interfaces


public interface

ClassFileTransformer ;
public interface

Instrumentation ;

Classes


public final class

ClassDefinition ;

Exceptions


public class

IllegalClassFormatException extends Exception;
public class

UnmodifiableClassException extends Exception;


    / 1191