如何在 Axapta 3.0 中清空数组?

发布于 2024-07-14 21:54:19 字数 37 浏览 7 评论 0原文

有人可以详细说明如何在 Axapta 3.0 中清空数组吗?

Can someone please detail how to empty an array in Axapta 3.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一张白纸 2024-07-21 21:54:19

要释放 Array 对象,只需为其指定 null:

Array myArray = new Array(Types::Integer);
;
myArray = null; //remove reference to Array so it will be garbage collected

要重置数组类型的所有元素,请为元素 0 指定一个值:

int myArray[10];
;
myArray[0]=0; //reset all elements of the array to their default value

To free an Array object, just assign null to it:

Array myArray = new Array(Types::Integer);
;
myArray = null; //remove reference to Array so it will be garbage collected

To reset all elements of an array type, assign a value to element 0:

int myArray[10];
;
myArray[0]=0; //reset all elements of the array to their default value
ι不睡觉的鱼゛ 2024-07-21 21:54:19

引用msdn http://msdn.microsoft.com/en-us/library/ aa653716.aspx

n X++,第零[0]项用于清除数组! 赋值给
数组中的索引 0 将数组中的所有元素重置为默认值
价值。 例如,

intArray[0] = 0; //重置intArray中的所有元素

Quoting from msdn http://msdn.microsoft.com/en-us/library/aa653716.aspx

n X++, item zero[0] is used to clear the array! Assigning a value to
index 0 in an array resets all elements in the array to the default
value. For example,

intArray[0] = 0; //Resets all elements in intArray

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文