1. Java If statement
1,if statement if (condition) {statement;}if (condition) {statement 1;}else{statement 2;}2, multiple If-else statement if (condition 1) {statement 1;}else if (condition 2) {statement 2;}else{statement;}
2, go if statement For conditional statements, the following points need to be noted:? Conditional statements do not need to use parentheses to enclose conditions ();? There are several statements in the body of the statement, the curly braces {} must exist;? The left curly brace {must be on the same line as if or else; before the conditional statement, you can add a variable initialization statement, use; interval; in a function that has a return value, the "final" return statement is not allowed to be included in the If...else ... Structure, otherwise the compilation fails: example: If condition (can not use parentheses) {condition}else{condition}
The difference between the Java language Foundation and the Go Language Foundation, if statement