Skip to content

Commit a4e9353

Browse files
committed
Update proxy.md
1 parent eb98cd2 commit a4e9353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/java/basis/proxy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ extends Callback{
277277

278278
```
279279

280-
1. **obj** : 动态生成的代理对象
280+
1. **obj** : 被代理的对象(需要增强的对象)
281281
2. **method** : 被拦截的方法(需要增强的方法)
282282
3. **args** : 方法入参
283283
4. **proxy** : 用于调用原始方法
@@ -330,7 +330,7 @@ public class DebugMethodInterceptor implements MethodInterceptor {
330330

331331

332332
/**
333-
* @param o 代理对象(增强的对象
333+
* @param o 被代理的对象(需要增强的对象
334334
* @param method 被拦截的方法(需要增强的方法)
335335
* @param args 方法入参
336336
* @param methodProxy 用于调用原始方法

0 commit comments

Comments
 (0)