English 中文(简体)
在卢阿语中,如果只有一种论点的话,一个声明意味着什么?
原标题:In Lua what does an if statement with only one argument mean?

Lua对我而言是新手, 我试着做我的功课,但不确定以下的自然说明是否意味着什么。

该守则如下:

local function getMinHeight(self)
    local minHeight = 0
    for i=1, minimizedLines do
        local line = select(9+i, self:GetRegions())
        **if(line) then
            minHeight = minHeight + line:GetHeight() + 2.5
        end**
    end
    if(minHeight == 0) then
        minHeight = select(2, self:GetFont()) + 2.5
    end
    return minHeight
end

与 ** 前后的语句是否为我不确定的部分。 我不知道该语句是否在检查。 如果线条不是零的话? 如果线条存在的话? 如果是什么?

问题回答

在卢阿语中,任何非 nil false 的文字在条件条件下评价为真。

如果线不是零的话?如果线是存在的呢?

对两者都一样,因为两者的意思是相同的。

select 函数从参数列表中返回一个具体参数。 它主要用于 ... , 但在此情况下, 它用于选择 自己返回的( i+9) 值: GetRegions 。 如果没有这种值( 例如, 如果 GetRegions只返回5 值), 那么 < code> chelect 返回零 。

if( line) 正在检查它是否从 select 获得一个数值。

if( line) 被用作 if( line non) 的快捷键, 因为“ 无” 评估为有条件的假 。


值得指出的是,这条捷径并不总是合适的。例如,我们可以在这样的表格中复制所有数值:

key, val = next(lookup)
while key do
    print(key, val)
    key, val = next(lookup, key)
end

然而,如果出现一个表格键为false ,这将失败 :

lookup = { 
    ["fred"] = "Fred Flinstone",
    [true] = "True",
    [false] = "False", 
}

所以我们必须明确检查 nil :

key, val = next(lookup)
while key ~= nil do
    print(key, val)
    key, val = next(lookup, key)
end

如穆德所说,在lua中,除 nil 以外的任何事物都被视为 truty 。因此,只要 line 不是 nil false ,以上 就会通过。

说到这里,我有点担心,就像你对问题所说的话—— “如果只有一个论点的话”。

首先,它不叫“参数” - 它叫表达 。 在大多数语言中,总是一个 。例如,在 java 中,你可以做这样的事情:

bool found = false

...

if(found) {
  ...
}

if 只关心表达式的最终值;它们不关心表达式是单个变量还是更复杂的构造。





相关问题
Detect months with 31 days

Is there an analogous form of the following code: if(month == 4,6,9,11) { do something; } Or must it be: if(month == 4 || month == 6 etc...) { do something; } I am trying to write an if ...

&& (AND) and || (OR) in IF statements

I have the following code: if(!partialHits.get(req_nr).containsKey(z) || partialHits.get(req_nr).get(z) < tmpmap.get(z)){ partialHits.get(z).put(z, tmpmap.get(z)); } where partialHits ...

If / else order sequence issue

I have the following set up, a ddl (ddlProd, radBuyer) and autocomplete text box (txtProdAC, radProd) that when populated and their respective radio buttons are selected, a grid view of the data is ...

PHP if or statement not working

We are trying to use the below piece of code if (($_GET[ 1 ] != "1") || ($_GET[ 1 ] != "2")) { When we try this no matter what value the variable has it will evaluate as true even when data is ...

C++ String manipulation - if stament

I have the following code that works correctly. However after I add an else statement anything always evaluates to else wgetstr(inputWin, ch); //get line and store in ch variable str = ch; ...

Are one-line if / for -statements good Python style?

Every so often on here I see someone s code and what looks to be a one-liner , that being a one line statement that performs in the standard way a traditional if statement or for loop works. I ...

Which is faster - if..else or Select..case?

I have three condition to compare. Which one is more faster between the following two? Please point me out. Thanks all! If var = 1 then Command for updating database ElseIf var = 2 then ...