If I were to do something such as:
public class Game
{
private boolean RUNNING = true;
Game()
{
}
public static void main(String[] args)
{
Game game = new Game();
}
}
At what point in time would RUNNING = true
?
edit: for clarity, at what point in the program would running be set to true. ex: Before the constructor, after the constructor, etc.