Public
snipts » ctor
showing 1-1 of 1 snipts for ctor
-
∞ Initialisierungsreihenfolge
public class Init { String f(String s) { System.out.println(s); return s; } String init = f("Definition"); { init = f("Initblock"); } Init() { init = f("Ctor"); } public static void main(String[] args) { new Init(); } }



Learning MySQL