Java code compilation process

When you compile a java file using javac compiler, it produces a file with .class extension. The class file consists of bytes code. Byte code is platform independent as it can be run on any platform once it is compiled.



Comments

Popular posts from this blog

Why String is immutable in java?

What is an interface?

OOPS Concepts with realtime examples