Java Constructor Return a Value - What You Need to Know



No. Java constructor cannot return a value. If required, just create a method which calls the required constructor and returns the required value. See the example below.

public class Tester {
   public Tester(){}
   public static Tester getInstance(){
      Tester tester = new Tester();
       return tester;
   }
}
Updated on: 2020-02-04T10:54:52+05:30

911 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements