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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


InputMismatchExceptionjava.util

Java 5.0serializable unchecked

An exception of this type is thrown by a
Scanner

that
is not of the expected type or is out of range. Note that the
Scanner implements the Iterator
interface, and this exception is a subclass of
NoSuchElementException, which is thrown by
Iterator.next( ) when no more elements are
available.


Figure 16-34. java.util.InputMismatchException

public class

InputMismatchException extends NoSuchElementException {
// Public Constructors
public

InputMismatchException ( );
public

InputMismatchException (String

s );
}



    / 1191