在Java中向类添加自定义数组下标访问器?

发布于 2024-11-02 06:58:21 字数 327 浏览 1 评论 0原文

在 Python 中,您可以添加列表下标作为自定义类的数据结构的访问器:

class customFile:
    # other methods ...
    def __getitem__(self, x):
        return self.list[x]

以获得以下行为:

newFile = customFile()
newFile.list[1] = 4
newFile.list[1]
# 4
newFile[1]
# 4

有没有办法将类似的内容添加到 Java 中的自定义类中?

In Python, you can add list subscripts to be accessors to data structures for custom classes:

class customFile:
    # other methods ...
    def __getitem__(self, x):
        return self.list[x]

to get the behavior of:

newFile = customFile()
newFile.list[1] = 4
newFile.list[1]
# 4
newFile[1]
# 4

Is there any way to add something like this to custom classes in Java?

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

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

发布评论

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

评论(1

仅一夜美梦 2024-11-09 06:58:21

Java 中没有直接的等价物。最接近的等效方法是提供您自己的 List 的实现 集合类型。通常,您可以扩展 AbstractList,并提供 get(int)size() 方法,从而使您可以完全控制 AbstractList 的内容和大小。名单。

There is no direct equivalent in Java. The closest equivalent would be to provide your own implementation of the List collection type. Typically, you extend AbstractList, and provide the get(int) and size() methods, giving you complete control over the content and size of the list.

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