We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c554ff7 commit b47052cCopy full SHA for b47052c
1 file changed
docs/java/basis/why-there-only-value-passing-in-java.md
@@ -26,7 +26,7 @@ String hello = "Hello!";
26
sayHello(hello);
27
// str 为形参
28
void sayHello(String str) {
29
- System.out.println(str);
+ System.out.println(str);
30
}
31
```
32
0 commit comments