DEVFYI - Developer Resource - FYI

What's the difference between constructors and other methods?

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

141. What's the difference between constructors and other 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.

(Continued on next question...)

Other Interview Questions