Skip to Main Content

Static code

924997Jan 27 2015 — edited Jan 27 2015

In this snipped

1public class Test {

2    {

3        System.out.println("saida");

4    }

5   

6    public static void main(String[] args){

7        Test t = new Test();

8    }

9}

How Java language call lines 2 to 4?

This post has been answered by unknown-7404 on Jan 27 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked due to inactivity on Feb 24 2015
Added on Jan 27 2015
2 comments
729 views