Preview:
class Geek{    
  public static String geekName = "";
public static void geek(String name){
  geekName = name;
}
}
class GFG {
  public static void main (String[] args) {

    // Accessing the static method geek() and 
    // field by class name itself.
    Geek.geek("vaibhav"); 
    System.out.println(Geek.geekName);

    // Accessing the static method geek() by using Object's reference.
    Geek obj = new Geek();
    obj.geek("mohit");
    System.out.println(obj.geekName);
  }
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter