“Cómo acceder a un índice de una tabla lua” Código de respuesta

mesas de 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

Cómo acceder a un índice de una tabla 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

Respuestas similares a “Cómo acceder a un índice de una tabla lua”

Preguntas similares a “Cómo acceder a un índice de una tabla lua”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código