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.
基于 c 的语言中的硬编码数组操作很常见,如下所示:
int i[] = new i[2][2]; i = {{1,1},{2,2}};
如何在 vba 脚本中完成?
我认为您可以使用该Array()函数来构建一个值数组。
Array()
我还没有尝试过,但我怀疑你可以用这个做你想做的事:
Dim i as Variant i = Array(Array(1, 1), Array(2, 2))
已经有一段时间了,所以我的 VBA 有点生疏了。