gpt4 book ai didi

java - 我们可以在java中实现接口(interface)内的任何方法吗

转载 作者:行者123 更新时间:2023-12-01 07:22:01 25 4
gpt4 key购买 nike

interface temp
{
public int add(int a,int b)
{
return a+b;
}
}

我们可以在接口(interface)中实现上面这样的方法吗?或者我们只需在接口(interface)中定义方法。

最佳答案

是的,您可以在 Java 8 中使用默认方法

interface temp
{
default public int add(int a,int b)
{
return a+b;
}
}

正如 Thilo 在评论中提到的,Java 8 还添加了在接口(interface)中使用静态方法的可能性:

interface temp
{
public static int add(int a,int b)
{
return a+b;
}
}

关于java - 我们可以在java中实现接口(interface)内的任何方法吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33917038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com