gpt4 book ai didi

lua - 下面的lua代码没有意义

转载 作者:行者123 更新时间:2023-12-04 16:09:35 25 4
gpt4 key购买 nike

我有以下 lua 代码。我不确定它在做什么

width = aspectRatio > 1.5 and 320 or math.ceil( 480 / aspectRatio )

是不是短路了?

最佳答案

确实是短路了。它在 c 中的等效项是:

width = aspectRatio > 1.5 ? 320 : math.ceil( 480 / aspectRatio )

或者英文:如果纵横比大于1.5,则设置宽度为320,否则设置宽度为大于等于480与纵横比相除的最小整数值。

引用

http://www.lua.org/pil/3.3.html

关于lua - 下面的lua代码没有意义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22058744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com