⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proxydemo.py

📁 this is the most basic to learn python
💻 PY
字号:
#: c04:ProxyDemo.py
# Simple demonstration of the Proxy pattern.

class Implementation:
  def f(self): 
    print "Implementation.f()"
  def g(self): 
    print "Implementation.g()" 
  def h(self): 
    print "Implementation.h()" 

class Proxy:
  def __init__(self): 
    self.__implementation = Implementation() 
  # Pass method calls to the implementation:
  def f(self): self.__implementation.f() 
  def g(self): self.__implementation.g() 
  def h(self): self.__implementation.h() 

p = Proxy()
p.f(); p.g(); p.h()
#<hr>
output = '''
Implementation.f()
Implementation.g()
Implementation.h()
'''

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -