What is a Compile Time Constant in Java ?

A compile time constant is public static final variable. The public modifier is optional here. At compile time, they are replaced with actual values because compiler knows their value up-front and it also knows that it cannot be changed during run-time. So they are constants.



You May Interest

When Will You Use Strategy Design Pattern in Java ?

What are the Popular Implementations of Deque in Java ?

What are the Differences Between Internal and External Iterator i ...

What is the Reason For Overriding equals Method in Java ?

How Can You Make an Object Eligible for Garbage Collection in Jav ...