Wie Java funktioniert - Seite 3
-
QuellText vom Programmierer erstellt.
-
Compiler checkt ob Fehler im Code sind → Korrektheit
-
Compiler ertsellt ByteCode → plattformunbhängig
-
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");
}
+