mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-23 21:20:42 +08:00
[手动选题][tech]: 20221130.1 ⭐️⭐️ Get to know Lua for loops in 4 minutes.md
This commit is contained in:
parent
c64dd35b55
commit
d830d6f7a9
@ -0,0 +1,140 @@
|
||||
[#]: subject: "Get to know Lua for loops in 4 minutes"
|
||||
[#]: via: "https://opensource.com/article/22/11/lua-for-loops"
|
||||
[#]: author: "Seth Kenlon https://opensource.com/users/seth"
|
||||
[#]: collector: "lkxed"
|
||||
[#]: translator: " "
|
||||
[#]: reviewer: " "
|
||||
[#]: publisher: " "
|
||||
[#]: url: " "
|
||||
|
||||
Get to know Lua for loops in 4 minutes
|
||||
======
|
||||
|
||||
In programming, iteration is an important concept because code often must scan over a set of data several times so that it can process each item individually. Control structures enable you to direct the flow of the program based on conditions that are often established dynamically as the program is running. Different languages provide different controls, and in [Lua][1], there's the while loop, for loop, and repeatuntil loop. This article covers for loops. I will cover while and repeat until loops in a separate article.
|
||||
|
||||
### For loop
|
||||
|
||||
A for loop takes a known quantity of items and ensures that each item is processed. An "item" can be a number. It can also be a table containing several entries or any Lua data type. The syntax and logic are a little flexible, but the syntax allows for these parameters, each of which essentially describes a counter:
|
||||
|
||||
- Starting value of the counter
|
||||
- Stop value
|
||||
- The increment you want the counter to advance
|
||||
|
||||
For instance, suppose you have three items and want Lua to process each. Your counter could start at 3 and last until 1, at an increment of -1. That renders the count of 3, 2, 1.
|
||||
|
||||
```
|
||||
mytable = { "zombie", "Halloween", "apocalypse" }
|
||||
for count = 3, 1, -1 do
|
||||
print(count .. ": " .. mytable[count])
|
||||
end
|
||||
```
|
||||
|
||||
Run the code to ensure all three items are getting processed:
|
||||
|
||||
```
|
||||
$ lua ./for.lua3: apocalypse2: Halloween1: zombie
|
||||
```
|
||||
|
||||
This code effectively processed the table in "reverse" because it was a countdown. You can count up, instead:
|
||||
|
||||
```
|
||||
for count = 1, 3, 1 do
|
||||
print(mytable[count])
|
||||
end
|
||||
```
|
||||
|
||||
This example processes the table from lowest index to highest:
|
||||
|
||||
```
|
||||
$ lua ./for.lua1: zombie2: Halloween3: apocalypse
|
||||
```
|
||||
|
||||
### Increments
|
||||
|
||||
You can change the increment, too. For instance, maybe you want a zombie apocalypse without all the pomp and circumstance of Halloween:
|
||||
|
||||
```
|
||||
mytable = { "zombie", "Halloween", "apocalypse" }
|
||||
for count = 1, 3, 2 do
|
||||
print(mytable[count])
|
||||
end
|
||||
```
|
||||
|
||||
Run the code:
|
||||
|
||||
```
|
||||
$ lua ./for.lua
|
||||
zombie
|
||||
apocalypse
|
||||
```
|
||||
|
||||
The example printed 1 and 3 because the first count was 1, which was then incremented by 2 (for a total of 3).
|
||||
|
||||
### Counter
|
||||
|
||||
Sometimes you don't know the number of times you need Lua to iterate over data. In this case, you can set your counter to a variable populated by some other process.
|
||||
|
||||
Also, the word `count` isn't a keyword. It's just what I'm using in my sample code for clarity. It's common for programmers to use something shorter, such as `i` or `c`.
|
||||
|
||||
```
|
||||
var = os.time()
|
||||
if var%2 == 0 then
|
||||
mytable = { var }
|
||||
else
|
||||
mytable = { "foo", "bar", "baz" }
|
||||
end
|
||||
for c = 1, #mytable, 1 do
|
||||
print(mytable[c])
|
||||
end
|
||||
```
|
||||
|
||||
This code creates a variable containing the timestamp of when it was launched. If the timestamp is even (it has a modulo of 0 when divided by 2), then just the timestamp is placed into a table. If the timestamp is odd, it puts three strings into a table.
|
||||
|
||||
Now you can't be sure how many times your for loop needs to run. It's either once or thrice, but there's no way to be sure. The solution is to set the starting count to 1 and the final count to the length of the table (`#mytable` is the built-in shortcut to determine the length of a table).
|
||||
|
||||
It might take a few times of running the script to see both results, but eventually, you end up with something like this:
|
||||
|
||||
```
|
||||
$ lua ./dynamic.lua1665447960
|
||||
$ lua ./dynamic.lua
|
||||
foo
|
||||
bar
|
||||
baz
|
||||
```
|
||||
|
||||
### For loops with pairs and ipairs
|
||||
|
||||
If you've already read my article on [table iteration][2], then you're already familiar with one of the most common for loops in Lua. This one uses the `pairs` or `ipairs` function to iterate over a table:
|
||||
|
||||
```
|
||||
mytable = { "zombie", "Halloween", "apocalypse" }
|
||||
for i,v in ipairs(mytable) do
|
||||
print(i .. ": " v)
|
||||
end
|
||||
```
|
||||
|
||||
The `pairs` and `ipairs` functions "unpack" the table and dump the values into the variables you provide. In this example, I use `i` for _index_ and `v` for _value_, but the variables' names don't matter.
|
||||
|
||||
```
|
||||
$ lua ./for.lua1: zombie2: Halloween3: apocalypse
|
||||
```
|
||||
|
||||
### For loop
|
||||
|
||||
The for loop structure is common in programming and very common in Lua due to its frequent use of tables and the `pairs` function. Understanding the for loop structure and the options you have when controlling it means you can make clever decisions about how to process data in Lua.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/22/11/lua-for-loops
|
||||
|
||||
作者:[Seth Kenlon][a]
|
||||
选题:[lkxed][b]
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/seth
|
||||
[b]: https://github.com/lkxed
|
||||
[1]: https://opensource.com/article/22/11/lua-worth-learning
|
||||
[2]: https://opensource.com/article/22/11/iterate-over-tables-lua
|
Loading…
Reference in New Issue
Block a user