<Core Java Volume I Fundamentals 9th Edition> Note 01

来源:互联网 发布:阿里云 时间服务器 编辑:程序博客网 时间:2024/05/21 06:10



6.1.1. Properties of Interfaces

Just as methods in an interface are automatically public, fields are always public static final.


public interface Powered extends Moveable{  double milesPerGallon();  double SPEED_LIMIT = 95; // a public static final constant}



0 0
原创粉丝点击