lua table.sort中使用大于等于号报错 10
t={{1,2},{1,4},{1,3},{7,8}}table.sort(t,function(a,b)localc=tonumber(a[1])locald=tonu...
t = { {1,2}, {1,4},{1,3},{7,8}}
table.sort(t, function(a, b)
local c =tonumber(a[1])
local d = tonumber(b[1])
if c <= d then
end
return true
end)
for k, v in pairs(t) do
print(k,v[1],v[2])
end 展开
table.sort(t, function(a, b)
local c =tonumber(a[1])
local d = tonumber(b[1])
if c <= d then
end
return true
end)
for k, v in pairs(t) do
print(k,v[1],v[2])
end 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询