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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


ThreadDeathjava.lang

Java 1.0serializable error

Signals that a thread should terminate.
This error is thrown in a thread when the Thread.stop(
) method is called for that thread. This is an unusual
Error type that simply causes a thread to be
terminated, but does not print an error message or cause the
interpreter to exit. You can catch THReadDeath
errors to do any necessary cleanup for a thread, but if you do, you
must rethrow the error so that the thread actually terminates.


Figure 10-64. java.lang.ThreadDeath

public class

ThreadDeath extends Error {
// Public Constructors
public

ThreadDeath ( );
}



    / 1191