java中接口上的抽象方法是什么

发布于 2025-01-05 08:52:07 字数 677 浏览 1 评论 0原文

可能的重复:
为什么要将 Java 接口方法声明为抽象方法?< /a>

我在我们的一个 ejb 接口中发现了以下代码。有谁知道抽象在界面中的作用是什么?如果您这样做,还请解释为什么可能需要它或提供参考以阅读它 =)

@Local
public interface IDomasOrderProcessor {

    public abstract void executeOrderLines(List<OrderLine> lines);
    public abstract void setupJob(List<OrderLine> lines);
    public abstract void setupJob(OrderLine line);
}

Possible Duplicate:
Why would one declare a Java interface method as abstract?

I found the following code in one of our ejb interfaces. Does anyone know what the abstract does in the interface? If you do please also explain why it might be needed or provide a reference to read about it =)

@Local
public interface IDomasOrderProcessor {

    public abstract void executeOrderLines(List<OrderLine> lines);
    public abstract void setupJob(List<OrderLine> lines);
    public abstract void setupJob(OrderLine line);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

对风讲故事 2025-01-12 08:52:07

在这种情况下,abstract 是多余的。根据定义,接口上定义的所有方法都是publicabstract

摘录 Java 语言规范第 9.4 节

接口主体中的每个方法声明都是隐式的
抽象,所以它的主体总是用分号表示,而不是
块。

接口主体中的每个方法声明都是隐式的
公开。

abstract is redundant in this case. All methods defined on an interface are public and abstract by definition.

Excerpt Java Language Specification section 9.4

Every method declaration in the body of an interface is implicitly
abstract, so its body is always represented by a semicolon, not a
block.

Every method declaration in the body of an interface is implicitly
public.

撑一把青伞 2025-01-12 08:52:07

publicabstract 修饰符在接口中都是隐式的,应该避免。

Both public and abstract modifiers are implicit in interfaces and should be avoided.

谁人与我共长歌 2025-01-12 08:52:07

根据定义,接口中的方法是公共的和抽象的。我听有些人说,他们觉得这样明确地声明它们会更清楚,但对我来说,这似乎是额外的噪音。

A method in an interface is public and abstract by definition. I have heard some people say they feel that explicitly declaring them like that makes it clearer, but to me it seems like extra noise.

断爱 2025-01-12 08:52:07

根据
文档中interface的所有方法都是publicabstract,因此没有办法在内部显式定义abstract方法界面

As per this
document all the methods of interface is public and abstract, so there is no mean to define explicitly abstract method inside the interface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文