Lua:从float转换为int

前端之家收集整理的这篇文章主要介绍了Lua:从float转换为int前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
即使Lua不区分浮点数和整数,有些情况下要使用整数。如果你不能做一个像C的转换或没有像Python的int这样的东西,那么将数字隐藏成一个整数的最好方法是什么?

例如计算一个数组的索引时

idx = position / width

你如何确保idx是一个有效的数组索引?我已经提出了一个使用string.find的解决方案,但也许有一种使用明显快得多的算术的方法。我的解决方案:

function toint(n)
    local s = tostring(n)
    local i,j = s:find('%.')
    if i then
        return tonumber(s:sub(1,i-1))
    else
        return n
    end
end

解决方法

你可以使用math.floor(x)

Lua Reference Manual

Returns the largest integer smaller than or equal to x.

原文链接:https://www.f2er.com/lua/274780.html

猜你在找的Lua相关文章