A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

Concept of static method decleration or calling by class name

//static method decleration or calling by class name
class four
{
    int a,b;

 static void m1()
{
    System.out.println("hello");
}
public static void main(String args[])
{
    four f=new four();
    four.m1();
    System.out.println(f.a);
    System.out.println(f.b);
}

}

Output:













LEARN TUTORIALS

.

.