Skip to content

Commit c6819e7

Browse files
authored
Merge pull request Snailclimb#1133 from jaywhen/patch-1
Java 语句遗漏分号
2 parents 0f8129d + 72c9808 commit c6819e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/basis/Java基础知识.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Method add = clazz.getDeclaredMethod("add", Object.class);
272272
//但是通过反射添加,是可以的
273273
add.invoke(list, "kl");
274274
275-
System.out.println(list)
275+
System.out.println(list);
276276
```
277277
278278
泛型一般有三种使用方式:泛型类、泛型接口、泛型方法。

0 commit comments

Comments
 (0)