Line | |
---|
1 | package eu.hsrw.tr.prog.vl.einfuehrung; |
---|
2 | |
---|
3 | /** |
---|
4 | * Demonstration der Ausgabemethoden print, println, printf |
---|
5 | * @author Thomas Richter |
---|
6 | * |
---|
7 | */ |
---|
8 | public class Stringausgabe { |
---|
9 | |
---|
10 | public static void main(String[] args) { |
---|
11 | |
---|
12 | // mit Umbruch, v1 (bevorzugt!) |
---|
13 | System.out.println("java"); |
---|
14 | |
---|
15 | // ohne Umbruch |
---|
16 | System.out.print("java"); |
---|
17 | |
---|
18 | // mit Umbruch, v2 |
---|
19 | System.out.print("java\n"); |
---|
20 | |
---|
21 | // Umbruch ohne sonstige Ausgabe |
---|
22 | System.out.println(); |
---|
23 | |
---|
24 | // formatierte Ausgabe |
---|
25 | // für Format-Strings siehe Dokumentation zu java.util.Formatter |
---|
26 | System.out.printf("%10s\n", "Hallo"); |
---|
27 | System.out.printf("%10s\n", "Welt"); |
---|
28 | |
---|
29 | System.out.println(); |
---|
30 | |
---|
31 | // %d ganze Zahl |
---|
32 | // %f float |
---|
33 | // %s String, negative Zahl: linksbündig |
---|
34 | // %c char |
---|
35 | System.out.printf("%-10s Betrag: %7.2f ID: %4d\n", "Meier", 34.5668, 22); |
---|
36 | System.out.printf("%-10s Betrag: %7.2f ID: %4d\n", "May", 0.007, 42); |
---|
37 | |
---|
38 | System.out.println(); |
---|
39 | |
---|
40 | // Ausgabe von Zeichen (char) |
---|
41 | char c = 'a'; |
---|
42 | // Zeichen a |
---|
43 | System.out.println(c); |
---|
44 | // ASCII-Code 97 |
---|
45 | System.out.println((int)c); |
---|
46 | |
---|
47 | int x = c; |
---|
48 | // 97 |
---|
49 | System.out.println(x); |
---|
50 | } |
---|
51 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.