“Comment accéder à un index d'une table Lua” Réponses codées

tables 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

Comment accéder à un index d'une table Lua

--How to access something in a table by its index in lua:

local mytable = {"Hi", 6,"Bye"}

--To access it:

mytable[1]
--or
mytable[2]
--or
mytable[3]
Naughty Newt

Réponses similaires à “Comment accéder à un index d'une table Lua”

Questions similaires à “Comment accéder à un index d'une table Lua”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code