- package wk;
- public interface NewInterface{ //接口
- double PI=3.1416;
- }
- public class wd implements NewInterface{//实现接口的类
- public void printPI(){
- System.out.println("圆周率的常用近似值是:"+PI);
- }
- }
- public class 接口 { //主类,调用实现接口类的方法
- public static void main(String[] args){
- wd x=new wd();
- x.printPI();
- }
-
- }
复制代码
求大神告知
写代码时提示错误,但是去掉接口和实现接口的类前面的public就可以了,这是为什么啊 |
|