java class without constructor

Solutions on MaxInterview for java class without constructor by the best coders in the world

showing results for - "java class without constructor"
Alex
10 Oct 2018
1//If you don't write the constructor explicitly, compiler will generate a no-args constructor by default.
2public Maze(){
3}