An interface defines a protocol of behavior and not how we should be implemented. 实现接口的类遵循该接口定义的协议。
interface interfaceName{ // Any number of final, static variables datatype variableName = value; // Any number of abstract method declarations returntype methodName(list of parameters or no parameters); }
以上是为什么Java中的接口变量默认是静态和最终的?的详细内容。更多信息请关注PHP中文网其他相关文章!