Styrow.dev
Question 67 of 247
Java Topic: General medium

What's the difference between constructors and other methods?

Question

What’s the difference between constructors and other methods?

Answer

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.