惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
MyScale Blog
MyScale Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
MongoDB | Blog
MongoDB | Blog
I
InfoQ
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security

博客园 - AlanPaoPao

23)Visitor 22)Template 21)Strategy 20)State 19)Observer 18)Memento 17)Mediator 16)Iterator 15)Interpreter 14)Command 13)Chain Of Responsibility 11)Flyweight 10)Facade 09)Decorator 08)Composite 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
12)Proxy
AlanPaoPao · 2007-09-21 · via 博客园 - AlanPaoPao

    代理模式的目的是: 为对象提供一种代理以控制对这个对象的访问
    实例代码:

public interface IMath
{
  
double Add(double x, double y);
  
double Sub(double x, double y);
  
double Mul(double x, double y);
  
double Div(double x, double y);
}

class Math : IMath
{
  
public double Add(double x, double y) return x + y; }
  
public double Sub(double x, double y) return x - y; }
  
public double Mul(double x, double y) return x * y; }
  
public double Div(double x, double y) return x / y; }
}

class MathProxy : IMath
{
  Math math;

  
public MathProxy()
  
{
    math 
= new Math();
  }


  
public double Add(double x, double y)
  
{
    
return math.Add(x, y);
  }

  
public double Sub(double x, double y)
  
{
    
return math.Sub(x, y);
  }

  
public double Mul(double x, double y)
  
{
    
return math.Mul(x, y);
  }

  
public double Div(double x, double y)
  
{
    
return math.Div(x, y);
  }

}

class MainApp
{
  
static void Main()
  
{
    MathProxy p 
= new MathProxy();
    Console.WriteLine(
"4 + 2 = " + p.Add(42));
    Console.WriteLine(
"4 - 2 = " + p.Sub(42));
    Console.WriteLine(
"4 * 2 = " + p.Mul(42));
    Console.WriteLine(
"4 / 2 = " + p.Div(42));
    Console.Read();
  }

}