Thursday, 12 February 2015

static Keyword


public class Student7 {
    int id;
    String  name;
    static String college="NTR";
    public Student7(int id, String name) {
        this.id = id;
        this.name = name;
    }
    void dispaly()
    {
        System.out.println(id);
        System.out.println(name);
        System.out.println(college);
       
    }
    public static void main(String[] args) {
        Student7 s= new Student7(121, "sravan");
        Student7 s1= new Student7(12, "sravan");
        s.dispaly();
        s1.dispaly();
       
    }

}

No comments:

Post a Comment