Constructor in java..

 


/*
Opensourse
 */
/**
 *
 * @author lol ik
 */
public class Constructor {
    Constructor()
    {
        System.out.println("The constructer is inialised at the time of object creation");
    }
    public static void main(String args[])
    {
       Constructor object = new Constructor();//object created
    }
}

Posted by lol ik

Comments

Popular Posts