首页 > Java > java教程 > 正文

为什么Java中的接口变量默认是静态和最终的?

WBOY
发布: 2023-08-19 23:05:17
转载
1556 人浏览过

为什么Java中的接口变量默认是静态和最终的?

An interface defines a protocol of behavior and not how we should be implemented. 实现接口的类遵循该接口定义的协议。

  • 接口变量是静态的,因为Java接口不能单独实例化。变量的值必须在没有实例存在的静态上下文中分配。
  • final修饰符确保分配给接口变量的值是真正的常量 cannot be re-assigned. In other words, interfaces can declare only constants, not instance variables.

Template :

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中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板