criskgl
8/9/2019 - 12:27 PM

global variable

public class Solution{
  static class Example {
	  public static int myVariable;
  }
  
  public static void main(String[] args){
    Example.myVariable++;
    System.out.println(Example.myVariable);//will print 1
    Example.myVariable++;
    System.out.println(Example.myVariable);//will print 2
  }
}