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.
具有 M 个 T 类型元素的数组的类型表达式为
数组(1...M,T)
那么对于具有 M 行和 N 列的 2D 数组应该是什么?它应该是两个数组的笛卡尔积吗?请帮忙。
对于 M*N 数组,类型表达式将是
数组(1...M,数组(1...N,类型))
其中 M 是行数,N 是列数。只需将二维数组视为数组数组即可。