Computer Science, asked by tscr07, 9 months ago

Name the constructor which is always created with same name of the class name followed by empty brackets.

Answers

Answered by saumyajaiswal2810200
1

Answer:

parameterized constuctor should be the answer

Answered by thesonofkrishna
1

Answer: Java constructor

Explanation: A Java constructor is special method that is called when an object is instantiated. In other words, when you use the new keyword. The purpose of a Java constructor is to initializes the newly created object before it is used. This Java constructors tutorial will explore Java constructors in more detail.

Similar questions