Skip to content

Commit fb29586

Browse files
authored
Update README.md
1 parent a864bf4 commit fb29586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Note-For-Java
22
记录一下java学习过程的重要知识点
33
#### 1.在java中如果被除数或者除数有一个为浮点类型,0或者0.0是可以用作除数的,结果得正负无穷;取余操作亦是如此。
4-
#### 2.java在7.0之后switch语句case后面支持string类型
4+
#### 2.java在7.0之后switch语句case后面支持String类型
55
#### 3.java嵌套循环中内部循环使用break或者continue来控制外部循环结束或者跳过可以使用标签,示例代码:
66
out: for (int i = 0; i < 10; i++) {
77
System.out.print("i = " + i + "\t");

0 commit comments

Comments
 (0)