auto commit

This commit is contained in:
CyC2018
2020-11-04 00:43:28 +08:00
parent 222f93fafc
commit d8fa086796
6 changed files with 130 additions and 146 deletions

View File

@ -1322,7 +1322,7 @@ public static void main(String[] args) {
应该注意的是返回值不同其它都相同不算是重载
```
```java
class OverloadingExample {
public void show(int x) {
System.out.println(x);
@ -1334,7 +1334,7 @@ class OverloadingExample {
}
```
```
```java
public static void main(String[] args) {
OverloadingExample example = new OverloadingExample();
example.show(1);