S
Stefan Ram
Knute Johnson said:Is there any practical difference between;
static final String s1 = "A";
and
static final String s1;
static { s1 = "A" };
If you deem it a »practical difference«
that the second text will not compile.