aspose file tools
The moose likes Beginning Java and the fly likes Constructors? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Constructors?" Watch "Constructors?" New topic
Author

Constructors?

T sandya
Ranch Hand

Joined: Aug 03, 2006
Posts: 64
Hi Friends,
what are the similarities between constructor and method.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
  • 1: Both can have the same access modifiers.
  • 2: Both can have an argument list, in the same format.
  • 3: Both contain statements.
  • 4: Each can be mistaken for the other You can't call a contructor the way you call a method and you can't call a method the way you call a constructor.
  •  
    I agree. Here's the link: http://aspose.com/file-tools
     
    subject: Constructors?
     
    Similar Threads
    another question on constructors
    IS CONCTRUCTOR IS A METHOD
    WA #1.....word association
    Constructor doubt - K&B Book
    Constructors are not inhertied - True