在Java中,接口可以包含常量,这些常量被称为接口常量或者接口值。这些常量是在接口中定义的,且默认为public static final。接口常量可以被实现接口的类直接访问,并且不能被修改。
例如,下面是一个包含接口常量的示例接口:
public interface ExampleInterface { int VALUE = https://www.yisu.com/ask/100;>在上面的示例中,接口ExampleInterface定义了一个接口常量VALUE,并且还定义了两个抽象方法method1和method2。实现ExampleInterface接口的类可以直接访问VALUE常量,如下所示:
public class ExampleClass implements ExampleInterface { @Override public void method1() { System.out.println("Method 1 is called"); } @Override public void method2() { System.out.println("Method 2 is called"); } public void printValue() { System.out.println("The value is: " + VALUE); } } public class Main { public static void main(String[] args) { ExampleClass example = new ExampleClass(); example.printValue(); } }在上面的示例中,ExampleClass类实现了ExampleInterface接口,并且通过调用printValue()方法可以访问接口常量VALUE。