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

推荐订阅源

Help Net Security
Help Net Security
G
Google Developers Blog
雷峰网
雷峰网
WordPress大学
WordPress大学
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Engineering at Meta
Engineering at Meta
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
AWS News Blog
AWS News Blog
F
Full Disclosure
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Exploit Database - CXSecurity.com
J
Java Code Geeks
U
Unit 42
C
Cyber Attacks, Cyber Crime and Cyber Security
V
V2EX
C
Cisco Blogs
博客园 - 司徒正美
Project Zero
Project Zero
L
LINUX DO - 热门话题
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
Scott Helme
Scott Helme
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog
S
Securelist
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
G
GRAHAM CLULEY
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyberwarzone
Cyberwarzone
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
T
Threatpost
Recorded Future
Recorded Future
C
CXSECURITY Database RSS Feed - CXSecurity.com
宝玉的分享
宝玉的分享
N
News and Events Feed by Topic
人人都是产品经理
人人都是产品经理
The Register - Security
The Register - Security
S
Security Archives - TechRepublic
博客园 - Franky
N
News | PayPal Newsroom
Simon Willison's Weblog
Simon Willison's Weblog
S
SegmentFault 最新的问题
W
WeLiveSecurity
A
Arctic Wolf
B
Blog

博客园 - 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 12)Proxy 11)Flyweight 09)Decorator 08)Composite 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
10)Facade
AlanPaoPao · 2007-09-19 · via 博客园 - AlanPaoPao

    外观模式的目的是: 为子系统中的一组接口提供一个高层接口,使得这一子系统更加容易使用
    实例代码:

class User
{
  
private string name;
  
public User(string name)
  
{
    
this.name = name;
  }

  
public string Name
  
{
    
get return this.name; }
  }

}

class UserPrivilege
{
  
public bool HasPrivilege(User u, Int32 privilege)
  
{
    Console.WriteLine(
"检查用户权限:" + u.Name);
    
if (u.Name.Equals("PaoPao"&& privilege == 666)
      
return true;
    
return false;
  }

}

class GroupPrivilege
{
  
public bool IsPrivilege(User u, Int32 privilege)
  
{
    Console.WriteLine(
"检查用户组权限:" + u.Name);
    GroupList gl 
= new GroupList(u);
    
if (gl.GroupNameList.Contains("admin"&& privilege == 888)
      
return true;
    
return false;
  }

}

class GroupList
{
  
private List<String> groupList = new List<String>();
  
public List<String> GroupNameList
  
{
    
get return groupList; }
    
set { groupList = value; }
  }

  
public GroupList(User u)
  
{
    
if (u.Name.Equals("PaoPao"))
    
{
      groupList.Add(
"admin");
      groupList.Add(
"sale");
    }

  }

}

class Facade
{
  
private UserPrivilege userPrivilege = new UserPrivilege();
  
private GroupPrivilege groupPrivilege = new GroupPrivilege();
  
public bool IsEligible(User user, Int32 privilege)
  
{
    Console.WriteLine(
"{0}进入认证,权限号{1}", user.Name, privilege);
    
if (userPrivilege.HasPrivilege(user, privilege))
    
{
      
return true;
    }

    
else if (groupPrivilege.IsPrivilege(user, privilege))
    
{
      
return true;
    }

    
return false;
  }

}

class MainApp
{
  
static void Main()
  
{
    Facade facade 
= new Facade();
    User user 
= new User("PaoPao");
    Boolean eligable 
= facade.IsEligible(user, 666);
    Console.WriteLine(user.Name 
+ (eligable ? "有权限\n" : "没有权限\n"));
    eligable 
= facade.IsEligible(user, 777);
    Console.WriteLine(user.Name 
+ (eligable ? "有权限\n" : "没有权限\n"));
    eligable 
= facade.IsEligible(user, 888);
    Console.WriteLine(user.Name 
+ (eligable ? "有权限\n" : "没有权限\n"));
    Console.Read();
  }

}