Compiler code

When we write a program in Java, we know that it gets converted to byte code, but before that compiler adds some intelligent code into our code. Let’s see what compiler will add 1) Extends Object class to our class 2) Default constructor if there are no constructor defined for a class 3) Adds this […]

Share this article on