java隐藏类_在Java类中如何隐藏不受支持的接口方法?

实际上,一旦实现接口,就不能为其所有方法提供实现,或者使类抽象化。没有实现就无法跳过接口的方法(除非它们是默认方法)。但是,如果尝试跳过接口的实现方法,则会生成编译时错误。

示例interface MyInterface{

public static int num = 100;

public void sample();

public void getDetails();

public void setNumber(int num);

public void setString(String data);

}

public class InterfaceExample implements MyInterface{

public static int num = 10000;

public void sample() {

System.out.println("这是sample方法的实现");

}

public static void main(String args[]) {

InterfaceExample obj = new InterfaceExample();

obj.sample();

}

}

输出结果

编译时错误InterfaceExample.java:8: error: InterfaceExample is not abstract and does not override abstract method setString(String) in MyInterface

public class InterfaceExample implements MyInterface{

^

1 error

但是,您可以实现这些不需要的/不受支持的方法,并从中抛出异常,例如UnsupportedOperationException或IllegalStateException。

示例interface MyInterface{

public void sample();

public void getDetails();

public void setNumber(int num);

public void setString(String data);

}

public class InterfaceExample implements MyInterface{

public void getDetails() {

try {

throw new UnsupportedOperationException();

}

catch(UnsupportedOperationException ex) {

System.out.println("Method not supported");

}

}

public void setNumber(int num) {

try {

throw new UnsupportedOperationException();

}

catch(UnsupportedOperationException ex) {

System.out.println("Method not supported");

}

}

public void setString(String data) {

try {

throw new UnsupportedOperationException();

}

catch(UnsupportedOperationException ex) {

System.out.println("Method not supported");

}

}

public void sample() {

System.out.println("这是sample方法的实现");

}

public static void main(String args[]) {

InterfaceExample obj = new InterfaceExample();

obj.sample();

obj.getDetails();

obj.setNumber(21);

obj.setString("data");

}

}

输出结果这是sample方法的实现

Method not supported

Method not supported

Method not supported

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值