Java 5 Constants

13 Oct

Java 5 has better support for constants, implemented as an interface

// Create like:
public interface Constants {
public static final String WELCOME = “welcome”;
}


// Use like:
import static Constants.*;
public class test{
public static void main(String[] args) {
System.out.println(WELCOME);
}
}

Leave a comment