在Java中向类添加自定义数组下标访问器?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 theget(int)
andsize()
methods, giving you complete control over the content and size of the list.