Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
__getitem__Python では、次のようにオーバーライドすることで、任意のクラスでインデックス作成をサポートできます。
__getitem__
class Test: def __getitem__(self, key): return self.data[key]
Dart にはこれと同様の構造がありますか?