auto commit

This commit is contained in:
CyC2018 2018-04-06 23:18:52 +08:00
parent c43645a9e4
commit 5c1c64ce48

View File

@ -572,10 +572,7 @@ public class AbstractExtendClassExample extends AbstractClassExample{
```
```java
AbstractClassExample ac1 = new AbstractClassExample(); // 'AbstractClassExample' is abstract; cannot be instantiated
```
```java
// AbstractClassExample ac1 = new AbstractClassExample(); // 'AbstractClassExample' is abstract; cannot be instantiated
AbstractClassExample ac2 = new AbstractExtendClassExample();
ac2.func1();
```