Java で、[] アクセサーを配列のように使用できるカスタム クラスを作成する方法はありますか?
通常配列
int[] foo = int[5];
foo[4] = 5;
print(foo[4]);
//Output: "5"
カスタム クラス
class Bar {
//Custom class that uses index as a ref
}
Bar foo = new Bar(5);
foo.set(4, 5);
print(foo[4]);
//Output: "5"