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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


WildcardTypejava.lang.reflect

Java 5.0


This
interface extends Type and represents a generic
type declared with a bounded or unbounded wildcard.
getUpperBounds(
) returns the upper bounds of the
wildcard. The returned array always includes at least one element. If
no upper bound is declared, Object.class is the
implicit upper bound. getLowerBounds(
) returns the lower bounds of the
wildcard. If no lower bound is declared, this method returns an

empty
array
.


Figure 10-104. java.lang.reflect.WildcardType

public interface

WildcardType extends Type {
// Public Instance Methods
Type[ ]

getLowerBounds ( );
Type[ ]

getUpperBounds ( );
}



    / 1191