Advanced Java Services | Die Klasse Stdin |
Method Summary | Method Detail |
java.lang.Object | +--Stdin
Eingabefunktionen für die primitiven Datentypen.
Implementiert als statische Methoden.
Method Summary | |
static boolean |
booleanEingabe() Ermöglicht die Eingabe einer Wahrheitswertes (Typ boolean) an der Konsole |
static byte
|
byteEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ byte an der Konsole |
static char |
charEingabe()
Ermöglicht die Eingabe einer Zeichens (Typ char) an der Konsole |
static double |
doubleEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ double an der Konsole |
static float |
floatEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ float an der Konsole |
static int |
intEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ int an der Konsole |
static long |
longEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ long an der Konsole |
static short |
shortEingabe()
Ermöglicht die Eingabe einer Zahl vom Typ short an der Konsole |
static java.lang.String |
stringEingabe()
Ermöglicht die Eingabe eines Strings an der Konsole |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static boolean booleanEingabe() throws java.lang.IllegalArgumentException
public static byte byteEingabe() throws java.lang.NumberFormatException
public static char charEingabe()
public static double doubleEingabe() throws java.lang.NumberFormatException
public static float floatEingabe() throws java.lang.NumberFormatException
public static int intEingabe() throws java.lang.NumberFormatException
public static long longEingabe() throws java.lang.NumberFormatException
public static short shortEingabe() throws java.lang.NumberFormatException
public static java.lang.String stringEingabe()
Method Index | Method Summary | Method Detail |