Question: What happens if you declare a class constructor to have a void return type? You cannot put a return type on a constructor, not even
What happens if you declare a class constructor to have a void return type?
You cannot put a return type on a constructor, not even 'void'!
The program will compile with a warning, but you'll get a runtime error
There's nothing wrong with declaring a constructor to be void
The class' default constructor will be used.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
