标签:ring span out ons print main todo cte style
public class StaticTest { static int j=2; static{ j=3; System.out.println(j); } public StaticTest() { // TODO Auto-generated constructor stub j=9; System.out.println(j); } public static void main(String[] args) { System.out.println("hello"); new StaticTest(); } }
3
hello
9
标签:ring span out ons print main todo cte style
原文地址:https://www.cnblogs.com/kakaisgood/p/12807420.html