许多库中都使用缩写 impl;这是什么意思?

发布于 2024-09-29 18:54:11 字数 1435 浏览 2 评论 0原文

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

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

发布评论

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

评论(2

困倦 2024-10-06 18:54:11

它代表实施

这是 Java 约定。

通常在java(特别是J2EE)中,您将从某个工厂获取一个对象,然后使用它。

该对象的类型通常作为接口提供给您,因此您不需要知道实际的类,只需要知道它的方法。

impl 类通常是实现这些接口之一所描述的行为的类。

It stands for Implementation.

It's a Java convention.

Often in java (particularly J2EE) you will get an object from some factory, and then use it.

That object's type is often given to you as an interface, so that you don't need to know the actual class, just its methods.

An impl class is usually a class that implements the behaviour described by one of these interfaces.

爱你是孤单的心事 2024-10-06 18:54:11

它是“实施”的缩写。通常,当父包包含抽象类、接口,也许还包含一些作为主要访问点的工厂类,然后 impl 包包含这些抽象类和接口的各种具体实现时,就会使用它。

It's short for "implementation". Generally it's used when the parent package contains abstract classes, interfaces, and perhaps some factory classes which are the main point of access, and then the impl package contains various concrete implementations of those abstract classes and interfaces.

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