分类:
2009-06-16 22:59:52
|
单个语句的时候,花括号是可选的,但是多种语言的经验告诉我们,任何时候都使用花括号是一个良好的习惯。
switch
switch( { case value0: statements; case value1: statements; ... case valueN: statements; default: statements; } |
TorqueScript的switch没有break语句,默认只会执行一个分支,自动break。字符串版本的switch是switch$。
switch$
switch$ ( { case "string value 0": statements; case "string value 1": statements; ... case "string value N": statements; default: statements; } |
for
for(expression0; expression1; expression2) { statement(s); } |
while
while(expression) { statements; } |