HU/Boolean: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Добавление языков) |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
A ''boolean'' vagy ''bool'' egy adattípus, melynek | A ''boolean'' vagy ''bool'' egy adattípus, melynek értéke lehet ''igaz'' vagy ''hamis''. Ezeket gyakran a funkciók jelzésére adják vissza, hogy a művelet sikeres volt-e, vagy sem. | ||
A tostring() és type() függvények segíthetnek kideríteni, hogy valami milyen típusú adattípus: | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local theReturn = isPedDead(getRandomPlayer()) | local theReturn = isPedDead(getRandomPlayer()) | ||
outputChatBox("The return was: "..tostring(theReturn)) -- | outputChatBox("The return was: "..tostring(theReturn)) -- Kiírja, hogy: "igaz" vagy "hamis" | ||
outputChatBox("The datatype of this return was: "..type(theReturn)) -- | outputChatBox("The datatype of this return was: "..type(theReturn)) -- "boolean"-t fog kiírni | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 12: | Line 12: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool = true | bool = true | ||
-- | -- ha meg akarja fordítani a két értéket, megteheti | ||
bool = false | bool = false | ||
-- | -- vagy | ||
bool = not bool | bool = not bool | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Scripting Concepts]] | [[Category:Translated/Scripting Concepts]] | ||
[[en:Boolean]] | [[en:Boolean]] | ||
[[ru:Boolean]] | [[ru:Boolean]] | ||
[[de:Boolean]] | [[de:Boolean]] | ||
[[hu:Boolean]] | |||
==Fordította== | |||
Surge |
Latest revision as of 19:45, 12 April 2021
A boolean vagy bool egy adattípus, melynek értéke lehet igaz vagy hamis. Ezeket gyakran a funkciók jelzésére adják vissza, hogy a művelet sikeres volt-e, vagy sem.
A tostring() és type() függvények segíthetnek kideríteni, hogy valami milyen típusú adattípus:
local theReturn = isPedDead(getRandomPlayer()) outputChatBox("The return was: "..tostring(theReturn)) -- Kiírja, hogy: "igaz" vagy "hamis" outputChatBox("The datatype of this return was: "..type(theReturn)) -- "boolean"-t fog kiírni
Reversing bools
bool = true -- ha meg akarja fordítani a két értéket, megteheti bool = false -- vagy bool = not bool
Fordította
Surge