- Lua Quick Start Guide
- Gabor Szauer
- 110字
- 2021-08-05 10:30:41
Operator precedence
Much like math, Lua has the concept of operator precedence. In math, 5 + 2 * 10 equals 25 because multiplication happens before addition. Lua behaves the same way; it even uses parentheses to prioritize one group of equations before another. To see this in action, try running the following code snippet:
print ( 5 + 2 * 10 ) -- prints 25
print ( (5 + 2) * 10 ) -- prints 70
Take note of how the output is different; this is because Lua follows mathematical precedence for arithmetic operators. Order of precedence is listed in this table from higher priority (first row) to lower priority (last row):

推薦閱讀
- JavaScript百煉成仙
- Git Version Control Cookbook
- Spring Boot開發與測試實戰
- Java面向對象軟件開發
- Android Application Development Cookbook(Second Edition)
- 零基礎學Java(第4版)
- Python Data Analysis(Second Edition)
- Building a Quadcopter with Arduino
- Python編程:從入門到實踐
- Extending Puppet(Second Edition)
- Visualforce Developer’s guide
- SQL Server 2016 從入門到實戰(視頻教學版)
- Clojure for Java Developers
- Go語言從入門到精通
- 多媒體技術及應用