Wie Java funktioniert - Seite 3

  1. QuellText vom Programmierer erstellt.

  2. Compiler checkt ob Fehler im Code sind → Korrektheit

  3. Compiler ertsellt ByteCode → plattformunbhängig

  4. JVM → ByteCode lesen und ausführen

Seite 6 Quiz über Java

char At - methode → useful für Palindrome

String num = "8";
int z = Integer.parseInt(num);
public static void main(String[] args) {
 
	System.out.print("Ich herrsche");
 
 
}
 
+