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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



An
IOException that signals that an input or output
operation was interrupted. The bytesTransferred
field contains the number of bytes read or written before the
operation was interrupted.


Figure 9-27. java.io.InterruptedIOException

public class 

InterruptedIOException extends IOException {
// Public Constructors
public

InterruptedIOException ( );
public

InterruptedIOException (String

s );
// Public Instance Fields
public int

bytesTransferred ;
}


Subclasses


java.net.SocketTimeoutException


/ 1191