Update 8-tips-on-decorators.md

This commit is contained in:
piglei 2022-03-17 17:58:16 +08:00 committed by GitHub
parent c2c747d93f
commit c47aaeded3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
True
```
函数自然是“可被调用”的对象。但除了函数外,我们也可以让任何一个类class变得“可被调用”callable。办法很简单只要自定义类的 `__call__` 魔法方法即可。
函数自然是“可被调用”的对象。但除了函数外,我们也可以让任何一个类实例变得“可被调用”callable。办法很简单只要自定义类的 `__call__` 魔法方法即可。
```python
class Foo: