Can any one tell me wats happening here...wats the use of "Point.p"...please
explain in detail as am new to JAVA

public class Main {

    public static void main(String[] args) {

        Point.p = new Point();

    }
}

class Point{

    static Point p;

      static void m1(int n){

        System.out.println(n);
    }
}

-- 
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en

Reply via email to