Showing posts with label object and class. Show all posts
Showing posts with label object and class. Show all posts

Thursday, June 24, 2010

Creating an object in java program

Creating an object in java program 
class Puppy{
   public Puppy(String name){
      // This constructor has one parameter, name.
      System.out.println("Your Name is :" + name ); 
   }
public static void main(String []args){
      // Following statement would create an object myPuppy
      Puppy myPuppy = new Puppy( "Jaypee" );
   }
}
sample output:
Your Name is : Jaypee