10.11. Übung
Spielen Sie Compiler
Die Java-Datei auf dieser Seite stellt ein vollständiges Programm dar. Ihr Job ist es, Compiler zu spielen und festzustellen, ob sich diese Datei kompilieren lässt. Falls nein – wie könnten Sie das in Ordnung bringen? Und falls ja – was käme heraus?
class StaticSuper{ static { System.out.println("statischer Block in super"); } StaticSuper{ System.out.println("Superkonstruktor"); } } public class StaticTests extends StaticSuper { static int zufallszahl; static { zufallszahl = (int) (Math.random() * 6); System.out.println("statischer Block " + zufallszahl); } StaticTests() { System.out.println("Konstruktor"); } public static void main(String [] args) { System.out.println("in main-Methode"); StaticTests st = new ...
Get Java™ von Kopf bis Fuß now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.