+ 1
How many constructor can be used in a single java class
Java
5 Antworten
+ 17
as many as you require
+ 5
You can always create as many of the same functions you want in the same class as long as they have different signatures.
Signature / one of these must be different: Return type, name, or perameters. With constructors, it'd only need a different parameter.
+ 2
thanks alot