Please send your Questions & Answers or Feedback to "mohan@javabook.org"
What is the difference between constructors and normal methods?
Constructors must have the same name as the class and can not return a value. They are only called once while regular methods could be called many times and it can return a value or can be void.