OOP mit Java: Eine hello world Applikation |
1/**
2 * Die HelloWorldApplication Klasse implementiert
3 * eine Applikation, ein eigenstaendiges Programm,
4 * das "Hello World!" auf der Standardausgabe ausgibt.
5 */
6
7class HelloWorldApplication {
8
9 public
10 static
11 void main(String[] args) {
12 // Ausgabe des strings "Hello World"
13 System.out.println("Hello World!");
14 }
15
16}
|
Kommentare:
|
|
/* normaler Kommentar
über mehrere Zeilen
wie in C
*/
|
|
Kommentare:
|
|
/** für Dokumentation
* über mehrere Zeilen
* ...
*/
|
|
Kommentare:
|
|
// bis zum Zeileende wie in C++
|
|
alles steht in einer Klasse
|
|
class HelloWorldApplication {
...
}
|
|
das Hauptprogramm ist eine Methode
|
|
public
static
void main(String[] args) {
...
}
|
javac HelloWorldApplication.java Wenn die Compilation erfolgreich ist, wird eine Datei HelloWorldApplication.class erzeugt. |
java HelloWorldApplication
Das Programm wird von dem Java-Interpretierer ausgeführt. |
Letzte Änderung: 14.02.2012 | © Prof. Dr. Uwe Schmidt |