Skip to content

Commit 711ec08

Browse files
committed
update sdn
1 parent f8df8b0 commit 711ec08

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

enterprise-knowledge/storage/storage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ nas
99

1010

1111
# 爱数、浪擎、英方、鼎甲、壹进制等国产备份软件厂商选型
12+
13+
SDN(software defined network)软件定义网络:https://blog.csdn.net/AtlanSI/article/details/95613225

languages/java/basic/problem.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Class 'GroudwaterServiceImpl' must either be declared abstract or implement abstract method 'save(Entity)' in 'IBaseService'
22

33
前提:
4+
45
```java
56
public interface IBaseService{//该函数是引入的另一个jar中的方法
67
Result<Integer> save(Entity var1);
@@ -12,6 +13,7 @@ public class GroudwaterServiceImpl implements IBaseService{
1213

1314
}
1415
```
16+
1517
我定义了这个类,然后ide告诉我要么定义为abstract类,要么必须实现IBaseService中的接口方法?
1618

1719
问题一:Result<Integer> save(Entity var1);的访问权限为什么是public abstract
@@ -23,7 +25,6 @@ public class GroudwaterServiceImpl implements IBaseService{
2325

2426
java9之后接口包含的内容:1.常量 2.抽象方法 3.默认方法 4.静态方法 5,私有方法
2527

26-
2728
只要是抽象类,那么就可以不用重写(实现)接口中的抽象方法
2829

2930
```java
@@ -45,7 +46,6 @@ public interface MyInterfaceAbstract {
4546

4647
https://blog.csdn.net/qq_44750696/article/details/123703495
4748

48-
4949
多态是怎么做的?
5050

5151
Java 反射
@@ -54,3 +54,8 @@ Java 反射
5454
注入spring中帮忙管理
5555
Java反射的使用
5656
https://blog.csdn.net/m0_69992031/article/details/125269217
57+
58+
59+
[深入理解 Java 反射和动态代理 - 知乎 (zhihu.com)](https://zhuanlan.zhihu.com/p/60805342)
60+
61+
[反射的概念和用法_程序员习溶的博客-CSDN博客](https://blog.csdn.net/m0_69992031/article/details/125269217)

0 commit comments

Comments
 (0)