“Pusty stół Lua” Kod odpowiedzi

stół lua jest pusty

if not next(myTable) then
    -- Table is empty
end
Matteo

Tabele Lua

local favoritefoods_table = {"hamburger", "spaghetti", "pizza", "potato chips"}
--the table--

for i, v in pairs(favoritefoods_table) do --loop through the table-- 
	print(i) --print the number--
  	print(v) --print the value--
end
Confused Cheetah

Pusty stół Lua

for k,v in pairs(table) do 
 table.remove(table, k)
end
Orion

Odpowiedzi podobne do “Pusty stół Lua”

Pytania podobne do “Pusty stół Lua”

Więcej pokrewnych odpowiedzi na “Pusty stół Lua” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu