X++ 中的随机数算法是什么? [斧头]

发布于 2024-12-19 03:05:30 字数 42 浏览 1 评论 0原文

在 Dynamics AX 中使用 x++ 获得随机实数的算法是什么?

What is the algorithm to have random reals using x++ in Dynamics AX?

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

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

发布评论

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

评论(2

不醒的梦 2024-12-26 03:05:30

旧方法(仅当使用 Axapta 3.0 时)是使用 随机 类,在系统文档\类下的 AOT 中列出。它只会返回一个 15 位整数。请参阅AX 日报

但像 Alex 一样,我更喜欢使用较新的 xGlobal ::randomPositiveInt32()

dice = (xGlobal::randomPositiveInt32() mod 6) + 1;

The old way (and only if using Axapta 3.0) is to use the Random class which is listed in the AOT under System Documentation\Classes. It will return a 15 bit integer only. See AX Daily.

But like Alex, I will prefer using the newer xGlobal::randomPositiveInt32().

dice = (xGlobal::randomPositiveInt32() mod 6) + 1;
段念尘 2024-12-26 03:05:30

您可以使用此方法轻松生成正整数,然后将其转换为实数,然后如果需要小数则除以小数。

i = xGlobal::randomPositiveInt32();

You can easily generate a positive int with this method, then just turn it into a real and divide after if you want decimals.

i = xGlobal::randomPositiveInt32();

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