Xcode arc4random() 未按预期运行

发布于 2024-12-26 12:20:22 字数 295 浏览 1 评论 0原文

我有以下输入(通过 NSLog 验证):xleft = 128,xRight = 192。下一行代码使用这些 -

xPos = (arc4random() % xRight-xleft) + xleft;

在最后一次运行中,xPos = 53。根据我的计算,如果生成的随机数为零,则它应该不小于 128 (192 - 128 = 64, rand(64) = 0, 0 + 128 = 128 我正在尝试生成 xLeft 到 xRight 范围内的随机数。

I have the following inputs (verified by NSLog): xleft = 128, xRight = 192. The next line of code uses these-

xPos = (arc4random() % xRight-xleft) + xleft;

On the last run, xPos = 53. By my calculations, it should be no less than 128 if the random number produced is zero (192 - 128 = 64, rand(64) = 0, 0 + 128 = 128. I am trying to generate random numbers in the range xLeft to xRight.

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

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

发布评论

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

评论(2

深海不蓝 2025-01-02 12:20:22

尝试:

xPos = (arc4random() % (xRight-xleft)) + xleft; 

基本上,您是通过 xRIght 进行修改,然后减去 xleft,而不是先从 xright 中减去 xleft,然后用结果进行修改。

参考链接:http://www.techotopia.com/index.php/Objective- C_2.0_Operator_Precedence

Try:

xPos = (arc4random() % (xRight-xleft)) + xleft; 

Basically you're modding by xRIght and then subtracting xleft, instead of first subtracting xleft from xright and modding with the result.

Reference link: http://www.techotopia.com/index.php/Objective-C_2.0_Operator_Precedence

段念尘 2025-01-02 12:20:22

% 在 C 和直接派生语言(如 Objective-C)中比 + 和 - 具有更高的优先级。它等于 * 和 /。

因此,该表达式的计算结果为:

  1. Get arc4random
  2. 获取该值的模数,然后 xRight
  3. 减去 xLeft
  4. 添加 xLeft

因此,您应该期望 [0, xRight) 范围内的任何内容

% has higher precedence in C and directly derived languages like Objective-C than + and -. It's equal to * and /.

So that expression is evaluated as:

  1. Get arc4random
  2. Get the modulus of that and xRight
  3. Subtract xLeft
  4. Add xLeft

So you should expect anything in the range [0, xRight)

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