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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


RandomAccessjava.util

Java 1.4

This marker interface is implemented by
List implementations to advertise that they
provide efficient (usually constant time) random access to all list
elements. ArrayList and Vector
implement this interface, but LinkedList does not.
Classes that manipulate generic List objects may
want to test for this interface with instanceof
and use different algorithms for lists that provide efficient random
access than they use for lists that are most efficiently accessed
sequentially.

public interface

RandomAccess {
}


Implementations


ArrayList, Vector,
java.util.concurrent.CopyOnWriteArrayList


    / 1191