语句 语句分为四个大类: * 分支语句:if,if... else,if ...else if... else,switch case * 循环语句:for,while,do while,foreach * 跳转语句:break,continue * 异常语句:try catch finally 用法: 1.if的用法 第一种:if(true){语句}else{语句} 第二种:if(true){语句}else if{语句}…n个else if{语句}…else{语句} 第三种:if(true){