As we go down our years of learning and coding in Java, we tend to forget some basics. Did you know that you can define more than one class in the same java file? The only condition being that among the classes defined in a … Continue reading Did you know that you can define more than one class in a .java file?
Tag: Class
Did you know about Local Classes in Java?
Did you know that you could declare classes inside code blocks i.e. methods, constructors, static blocks, etc? Such classes are called Local Classes. For example, the following would compile and run: public class SayHello { public void sayHello(final String name) { // … Continue reading Did you know about Local Classes in Java?