
Java
public class NoConstructorClass{
//no constructor goes here
}
Then you get something like this:
public class NoConstructorClass{
public NoConstructorClass(){ // Default constructor that you didn't write
super();
}
}
Copyright © 2026 eLLeNow.com All Rights Reserved.