2
if { ($name1 == "john") & ($name2 == "smith") } { puts "hello world" }
i got error:can't use non-numeric string as operand of "&"
if { $name1 == "john" & $name2 == "smith" } { puts "hello world" }
if { {$name1 == "john"} & {$name2 == "smith"} } { puts "hello world" }
是我該做的?
這段代碼適用於我(除了第三個變體,它提供了錯誤信息),但您可能想使用&&(邏輯和)而不是'&'(按位和)。 –