X++ 中的随机数算法是什么? [斧头]
在 Dynamics AX 中使用 x++ 获得随机实数的算法是什么?
What is the algorithm to have random reals using x++ in Dynamics AX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 Dynamics AX 中使用 x++ 获得随机实数的算法是什么?
What is the algorithm to have random reals using x++ in Dynamics AX?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
旧方法(仅当使用 Axapta 3.0 时)是使用 随机 类,在系统文档\类下的 AOT 中列出。它只会返回一个 15 位整数。请参阅AX 日报。
但像 Alex 一样,我更喜欢使用较新的 xGlobal ::randomPositiveInt32()。
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().
您可以使用此方法轻松生成正整数,然后将其转换为实数,然后如果需要小数则除以小数。
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();