gpt4 book ai didi

c# - Java 中是否有等效的 C# 索引器?

转载 作者:太空狗 更新时间:2023-10-29 22:44:19 26 4
gpt4 key购买 nike

我想用 Java 来做这个。可能吗?

public string this[int pos]
{
get
{
return myData[pos];
}
set
{
myData[pos] = value;
}
}

最佳答案

没有。您不能重载 Java 中的任何运算符,包括索引。 (String 重载了 +,但这已经融入了语言规范。)

只有数组支持[]语法。

您通常会改为编写方法:

public String getValue(int position) {
return myData[position];
}

public void setValue(int position, String value) {
myData[position] = value;
}

关于c# - Java 中是否有等效的 C# 索引器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13403881/

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