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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


ConcurrentModificationExceptionjava.util

Java 1.2serializable unchecked

Signals
that a modification has been made to a data structure at the same
time some other operation is in progress and that, as a result, the
correctness of the ongoing operation cannot be guaranteed. It is
typically thrown by an Iterator or
ListIterator object to stop an iteration if it
detects that the underlying collection has been modified while the
iteration is in progress.


Figure 16-11. java.util.ConcurrentModificationException

public class

ConcurrentModificationException extends RuntimeException {
// Public Constructors
public

ConcurrentModificationException ( );
public

ConcurrentModificationException (String

message );
}



    / 1191