java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.util.NoSuchElementException java.util.InputMismatchException
public class InputMismatchException
由 Scanner
抛出,表明获取的标记与期望类型的模式不匹配,或者该标记超出期望类型的范围。
构造方法摘要 | |
---|---|
InputMismatchException() 构造 InputMismatchException ,使用 null 作为其错误消息字符串。 |
|
InputMismatchException(String s) 构造 InputMismatchException ,将引用保存到错误消息字符串 s 中,以便将来由 getMessage 方法获取。 |
方法摘要 |
---|
从类 java.lang.Throwable 继承的方法 |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
public InputMismatchException()
InputMismatchException
,使用
null 作为其错误消息字符串。
public InputMismatchException(String s)
InputMismatchException
,将引用保存到错误消息字符串
s 中,以便将来由
getMessage 方法获取。
s
- 详细消息。