在 numpy 中,可以按如下方式访问数组import numpy as npa = np.arange(3*2).reshape(3, 2)b = a[0, 1]在 C++ 中,是否可以重载运算符 [] 来实现与a[0, 1]? 当然,输入参数的数量可能会有所不同。 查看完整描述