ASP。NET的设计思想

自从有了html与http,就有了浏览器与Web服务器,并有了Web应用,最初的交互模式是这样的:

      该模式很好地运行了很多年。然而,随着计算机应用的发展,人们越来越不满足于只有静态内容的页面,而由某种机制动态产生html等代码的需求越来越迫切,于是,很多技术就应运而生,Asp.net就是这样一种技术。从本质上讲,Asp.net就是一种服务器端动态产生html、css、javascript等浏览器认识的代码的技术。Asp.net的交互模式如下:

 

      由该图可知,Asp.net必须解决两大问题,一是如何与Web服务器(一般就是指IIS)进行交互,二是如何根据不同请求产生不同的html等代码。

 

      第一个问题,根据IIS版本(5.*,6.0,7.0)的不同,Asp.net具有不同的进程模式与不同的交互模式,该问题不是本篇要讲述的。一般来说,大家不必关心该问题,而且要了解该问题,又必须清楚IIS各个版本的模型,而各个版本又各有各的不同,因此,我基本不准备讲述这个问题,大家有兴趣的话,可以自行搜索相关资料。

      我们来讨论第二个问题,这里首先要说明的是,因为IIS7.0进程模式的变化比较大,我也没去了解IIS7.0的模型,因此,以下讲述及以后讲述将只针对IIS5.*与IIS6.0。我们有理由认为,针对IIS5.*与IIS6.0的讲述一般同样适用于IIS7.0。

      先且按下该问题不表,我们来看一段请求玉帝把大象放到冰箱里的代码(为什么不是上帝?因为我中华不归上帝管),请大家先跟着我的思路来,别急,别急。

ContractedBlock.gifExpandedBlockStart.gifCode1
using System;

namespace ConsoleApplication3
ExpandedBlockStart.gifContractedBlock.gif
{
    
class Program
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= new Emperor();
            
while (true)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                Console.WriteLine(
"首先给玉帝准备好大象和冰箱。");

                Console.WriteLine(
"输入大象的名字:");
                
string elephantName = Console.ReadLine();
                Console.WriteLine(
"输入大象的体重:");
                
int elephantWeight = int.Parse(Console.ReadLine());
                Console.WriteLine(
"输入冰箱的名字:");
                
string refrigeratorName = Console.ReadLine();

                Elephant elephant 
= new Elephant()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= elephantName,
                    Weight 
= elephantWeight
                }
;
                Refrigerator refrigerator 
= new Refrigerator()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= refrigeratorName
                }
;

                Context context 
= new Context()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Elephant 
= elephant,
                    Refrigerator 
= refrigerator
                }
;

                emperor.ProcessRequest(context);

                Console.WriteLine(
"是否要玉帝继续把大象关进冰箱里?");
                
string answer = Console.ReadLine();
                
if (answer == "n")
                    
break;
            }

        }

    }


    
class Emperor
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
public void ProcessRequest(Context context)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Elephant elephant 
= context.Elephant;
            Refrigerator refrigerator 
= context.Refrigerator;

            
//第一步,打开冰箱门
            refrigerator.IsOpen = true;
            Console.WriteLine(
string.Format("玉帝打开了 {0} 的冰箱门。", refrigerator.Name));

            
//第二步,把大象放进去
            refrigerator.Content = elephant;
            Console.WriteLine(
string.Format("玉帝把大象 {0} 放到冰箱 {1} 里了。", elephant.Name, refrigerator.Name));

            
//第三步,关上冰箱门
            refrigerator.IsOpen = false;
            Console.WriteLine(
string.Format("玉帝关上了 {0} 的冰箱门。", refrigerator.Name));
        }

    }


    
class Elephant
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public int Weightgetset; }
    }


    
class Refrigerator
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public bool IsOpen getset; }

        
private object m_Content;
        
public object Content
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get return this.m_Content; }
            
set
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                
if (!this.IsOpen)
                    
throw new InvalidOperationException("冰箱门未打开,无法放进东西。");
                
if (this.m_Content != null)
                    
throw new InvalidOperationException("冰箱内有东西,无法放进新的东西。");

                
this.m_Content = value;
            }

        }

    }


    
class Context
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Elephant Elephant getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Refrigerator Refrigerator getset; }
    }

}

 

      请大家先认真读懂该代码,该代码不会有问题吧,如果有问题,那么还请你一定先读懂该代码再往下看。

      后来,玉帝累了,他想啊,我堂堂玉帝,居然亲自干这种没含量的活,但是顾客是玉帝的玉帝,又不能不干。于是,玉帝找了两个手下(把门大神、神象星宿)来帮他干活。

ContractedBlock.gifExpandedBlockStart.gifCode2
using System;
using System.Collections.Generic;

namespace ConsoleApplication3
ExpandedBlockStart.gifContractedBlock.gif
{
    
class Program
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= new Emperor();
            emperor.Init();

            
while (true)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                Console.WriteLine(
"首先给玉帝准备好大象和冰箱。");

                Console.WriteLine(
"输入大象的名字:");
                
string elephantName = Console.ReadLine();
                Console.WriteLine(
"输入大象的体重:");
                
int elephantWeight = int.Parse(Console.ReadLine());
                Console.WriteLine(
"输入冰箱的名字:");
                
string refrigeratorName = Console.ReadLine();

                Elephant elephant 
= new Elephant()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= elephantName,
                    Weight 
= elephantWeight
                }
;
                Refrigerator refrigerator 
= new Refrigerator()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= refrigeratorName
                }
;

                Context context 
= new Context()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Elephant 
= elephant,
                    Refrigerator 
= refrigerator
                }
;

                emperor.ProcessRequest(context);

                Console.WriteLine(
"是否要玉帝继续把大象关进冰箱里?");
                
string answer = Console.ReadLine();
                
if (answer == "n")
                    
break;
            }

        }

    }


    
class Emperor
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
private IList<IEmperorModule> m_Modules;
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Context Context getset; }

        
public void Init()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            m_Modules 
= new List<IEmperorModule>();
            m_Modules.Add(
new OpenCloseRefrigeratorDoorModule());
            m_Modules.Add(
new PutElephantToRefrigeratorModule());

            
foreach (IEmperorModule module in this.m_Modules)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                module.Init(
this);
            }

        }


        
public void ProcessRequest(Context context)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            
this.Context = context;

            
this.OnOpenRefrigeratorDoor();
            
this.OnPutElephantToRefrigerator();
            
this.OnCloseRefrigeratorDoor();
        }


        
public event EventHandler OpenRefrigeratorDoor;
        
public event EventHandler PutElephantToRefrigerator;
        
public event EventHandler CloseRefrigeratorDoor;

        
protected virtual void OnOpenRefrigeratorDoor()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.OpenRefrigeratorDoor;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }


        
protected virtual void OnPutElephantToRefrigerator()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.PutElephantToRefrigerator;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }


        
protected virtual void OnCloseRefrigeratorDoor()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.CloseRefrigeratorDoor;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }

    }


    
class Elephant
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public int Weightgetset; }
    }


    
class Refrigerator
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public bool IsOpen getset; }

        
private object m_Content;
        
public object Content
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get return this.m_Content; }
            
set
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                
if (!this.IsOpen)
                    
throw new InvalidOperationException("冰箱门未打开,无法放进东西。");
                
if (this.m_Content != null)
                    
throw new InvalidOperationException("冰箱内有东西,无法放进新的东西。");

                
this.m_Content = value;
            }

        }

    }


    
class Context
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Elephant Elephant getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Refrigerator Refrigerator getset; }
    }


    
interface IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
void Init(Emperor emperor);
    }


    
class OpenCloseRefrigeratorDoorModule : IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ContractedSubBlock.gifExpandedSubBlockStart.gif        
IEmperorModule 成员#region IEmperorModule 成员
        
public void Init(Emperor emperor)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            emperor.OpenRefrigeratorDoor 
+= new EventHandler(this.OpenDoor);
            emperor.CloseRefrigeratorDoor 
+= new EventHandler(this.CloseDoor);
        }

        
#endregion


        
private void OpenDoor(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;
            refrigerator.IsOpen 
= true;
            Console.WriteLine(
string.Format("玉帝的把门大神打开了 {0} 的冰箱门。", refrigerator.Name));
        }


        
private void CloseDoor(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;
            refrigerator.IsOpen 
= false;
            Console.WriteLine(
string.Format("玉帝的把门大神关上了 {0} 的冰箱门。", refrigerator.Name));
        }

    }


    
class PutElephantToRefrigeratorModule : IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ContractedSubBlock.gifExpandedSubBlockStart.gif        
IEmperorModule 成员#region IEmperorModule 成员
        
public void Init(Emperor emperor)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            emperor.PutElephantToRefrigerator 
+= new EventHandler(this.PutElephantToRefrigerator);
        }

        
#endregion


        
private void PutElephantToRefrigerator(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Elephant elephant 
= emperor.Context.Elephant;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;
            refrigerator.Content 
= elephant;
            Console.WriteLine(
string.Format("玉帝的神象星宿把大象 {0} 放到冰箱 {1} 里了。", elephant.Name, refrigerator.Name));
        }

    }

}

 

      观测该代码有哪些变化?玉帝增加了一个Init方法,该方法召集了那些干活的手下,并交待手下你们要干的事情(初始化)。所有手下都继承自IEmperorModule接口,该接口有一个Init方法,以初始化该手下能干的活。玉帝的ProcessRequest方法不再亲自干活了,而仅仅是在那边喊,该开门了,该把大象放进去了,该关门了。

      (来点题外话,上面代码应用了模板方法模式,或者说是模板方法的变种。什么,不是,没有抽象类,没有抽象方法,没有子类?请问,模板方法一定要有抽象类吗?一定要有抽象方法吗?一定要有子类吗?我想,模板方法的精髓,在于它规定了特定的步骤算法,而这些步骤在必要的时候可以委托给其它方法实现。在传统的模板方法中,是委托给子类实现,而在我们拥有委托的情况下,难道我们不能委托给其它类实现吗?其实,我想,学习设计模式,不要拘泥于形式,而要掌握其精髓,并灵活运用。就Gof的23种设计模式来说,我觉得其精髓几乎全部可由一句话概括。)

      天有不测风云,人有旦夕祸福,某一天,这神象星宿病了,他赶不动超过1000斤的大象了,怎么办?玉帝于是又召集了超级神象星宿,可但凡有点能耐的都有点脾气,超级神象星宿表示,只有其它人赶不动的大象他才来赶。

ContractedBlock.gifExpandedBlockStart.gifCode3
using System;
using System.Collections.Generic;

namespace ConsoleApplication3
ExpandedBlockStart.gifContractedBlock.gif
{
    
class Program
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= new Emperor();
            emperor.Init();

            
while (true)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                Console.WriteLine(
"首先给玉帝准备好大象和冰箱。");

                Console.WriteLine(
"输入大象的名字:");
                
string elephantName = Console.ReadLine();
                Console.WriteLine(
"输入大象的体重:");
                
int elephantWeight = int.Parse(Console.ReadLine());
                Console.WriteLine(
"输入冰箱的名字:");
                
string refrigeratorName = Console.ReadLine();

                Elephant elephant 
= new Elephant()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= elephantName,
                    Weight 
= elephantWeight
                }
;
                Refrigerator refrigerator 
= new Refrigerator()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Name 
= refrigeratorName
                }
;

                Context context 
= new Context()
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Elephant 
= elephant,
                    Refrigerator 
= refrigerator
                }
;

                emperor.ProcessRequest(context);

                Console.WriteLine(
"是否要玉帝继续把大象关进冰箱里?");
                
string answer = Console.ReadLine();
                
if (answer == "n")
                    
break;
            }

        }

    }


    
class Emperor
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
private IList<IEmperorModule> m_Modules;
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Context Context getset; }

        
public void Init()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            m_Modules 
= new List<IEmperorModule>();
            m_Modules.Add(
new OpenCloseRefrigeratorDoorModule());
            m_Modules.Add(
new PutElephantToRefrigeratorModule());
            m_Modules.Add(
new SuperPutElephantToRefrigeratorModule());

            
foreach (IEmperorModule module in this.m_Modules)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                module.Init(
this);
            }

        }


        
public void ProcessRequest(Context context)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            
this.Context = context;

            
this.OnOpenRefrigeratorDoor();
            
this.OnPutElephantToRefrigerator();
            
this.OnCloseRefrigeratorDoor();
        }


        
public event EventHandler OpenRefrigeratorDoor;
        
public event EventHandler PutElephantToRefrigerator;
        
public event EventHandler CloseRefrigeratorDoor;

        
protected virtual void OnOpenRefrigeratorDoor()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.OpenRefrigeratorDoor;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }


        
protected virtual void OnPutElephantToRefrigerator()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.PutElephantToRefrigerator;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }


        
protected virtual void OnCloseRefrigeratorDoor()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            EventHandler handler 
= this.CloseRefrigeratorDoor;
            
if (handler != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                handler(
this, EventArgs.Empty);
            }

        }

    }


    
class Elephant
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public int Weightgetset; }
    }


    
class Refrigerator
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Name getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public bool IsOpen getset; }

        
private object m_Content;
        
public object Content
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
get return this.m_Content; }
            
set
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                
if (!this.IsOpen)
                    
throw new InvalidOperationException("冰箱门未打开,无法放进东西。");
                
if (this.m_Content != null)
                    
throw new InvalidOperationException("冰箱内有东西,无法放进新的东西。");

                
this.m_Content = value;
            }

        }

    }


    
class Context
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Elephant Elephant getset; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public Refrigerator Refrigerator getset; }

        
private IDictionary<stringobject> m_Items;
        
public IDictionary<stringobject> Items
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            
get
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                
if (this.m_Items == null)
                    
this.m_Items = new Dictionary<stringobject>();
                
return this.m_Items;
            }

        }

    }


    
interface IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
        
void Init(Emperor emperor);
    }


    
class OpenCloseRefrigeratorDoorModule : IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ContractedSubBlock.gifExpandedSubBlockStart.gif        
IEmperorModule 成员#region IEmperorModule 成员
        
public void Init(Emperor emperor)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            emperor.OpenRefrigeratorDoor 
+= new EventHandler(this.OpenDoor);
            emperor.CloseRefrigeratorDoor 
+= new EventHandler(this.CloseDoor);
        }

        
#endregion


        
private void OpenDoor(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;
            refrigerator.IsOpen 
= true;
            Console.WriteLine(
string.Format("玉帝的把门大神打开了 {0} 的冰箱门。", refrigerator.Name));
        }


        
private void CloseDoor(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;
            refrigerator.IsOpen 
= false;
            Console.WriteLine(
string.Format("玉帝的把门大神关上了 {0} 的冰箱门。", refrigerator.Name));
        }

    }


    
class PutElephantToRefrigeratorModule : IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ContractedSubBlock.gifExpandedSubBlockStart.gif        
IEmperorModule 成员#region IEmperorModule 成员
        
public void Init(Emperor emperor)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            emperor.PutElephantToRefrigerator 
+= new EventHandler(this.PutElephantToRefrigerator);
        }

        
#endregion


        
private void PutElephantToRefrigerator(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Elephant elephant 
= emperor.Context.Elephant;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;

            
if (elephant.Weight > 1000)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                Console.WriteLine(
"这头大象实在太重了,我神象星宿挪不动阿。");
            }

            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                refrigerator.Content 
= elephant;
                emperor.Context.Items[
"HasPutElephant"= true;
                Console.WriteLine(
string.Format("玉帝的神象星宿把大象 {0} 放到冰箱 {1} 里了。", elephant.Name, refrigerator.Name));
            }

        }

    }


    
class SuperPutElephantToRefrigeratorModule : IEmperorModule
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{
ContractedSubBlock.gifExpandedSubBlockStart.gif        
IEmperorModule 成员#region IEmperorModule 成员
        
public void Init(Emperor emperor)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            emperor.PutElephantToRefrigerator 
+= new EventHandler(this.PutElephantToRefrigerator);
        }

        
#endregion


        
private void PutElephantToRefrigerator(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            Emperor emperor 
= (Emperor)sender;
            Elephant elephant 
= emperor.Context.Elephant;
            Refrigerator refrigerator 
= emperor.Context.Refrigerator;

            
object hasPutElephant;
            
if (emperor.Context.Items.TryGetValue("HasPutElephant"out hasPutElephant))
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
                
if (hasPutElephant is bool && ((bool)hasPutElephant) == true)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{
                    Console.WriteLine(
"已经有人把大象放进冰箱了,我超级神象星宿就歇歇了。");
                    
return;
                }

            }


            refrigerator.Content 
= elephant;
            emperor.Context.Items[
"HasPutElephant"= true;
            Console.WriteLine(
string.Format("玉帝的超级神象星宿把大象 {0} 放到冰箱 {1} 里了。", elephant.Name, refrigerator.Name));
        }

    }

}

      仔细琢磨该代码,请问你发现了什么?如果你发现的是灵活的可扩展性和可配置性,以及各手下之间的交互,那么恭喜你,你悟性很高。如果你还发现了职责链模式,那么恭喜你,你悟性非常高。(该代码中两个神象星宿的交互完全可以通过在Context中增加一个bool值属性来实现,之所有这里用Items字典,是为了演示如果你不具有修改Context的源代码的时候,该如何处理。)

     好了,Asp.net的设计思想讲完了。什么,还没开始?你没发现我们的Program就是HttpRuntime、Emperor就是HttpApplication、Context就是HttpContext、IEmperorModule就是IHttpModule吗?什么,没发现?那么,让我们来看看Asp.net的源代码吧。(本想把整个方法的源代码都贴上来,但是显得过于冗长,因此删掉非关键代码,并以//……省略……代替。)

 

      如此,你明白了吗?

转载于:https://www.cnblogs.com/aaa6818162/archive/2009/10/30/1592886.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/496168.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Kali linux 渗透测试技术之搭建WordPress Turnkey Linux及检测WordPress 应用程序漏洞

From&#xff1a;https://bbs.ichunqiu.com/thread-15716-1-1.html 怎样用 WPScan&#xff0c;Nmap 和 Nikto 扫描和检查一个 WordPress 站点的安全性&#xff1a;https://www.cnblogs.com/chayidiansec/p/7989274.html 为了收集用于测试的应用程序&#xff0c; Turnkey Linux…

AI芯片格局分布

来源&#xff1a;中国科学院自动化研究所 作者&#xff1a; 吴军宁如果说2016年3月份AlphaGo与李世石的那场人机大战只在科技界和围棋界产生较大影响的话&#xff0c;那么2017年5月其与排名第一的世界围棋冠军柯洁的对战则将人工智能技术推向了公众视野。阿尔法狗&#xff08;…

linux screen -ls,Linux screen命令详解

Linux下screen主要是管理程序的&#xff0c;用screen管理的进程可以在用户断开连接的时候保持程序继续在服务器上运行。第一步&#xff1a;首先肯定是登录到linux服务器上。敲入screen -ls 命令可以看到服务器上已有的screen。用screen -S(s的大写)screen名称可以创建一个scree…

自动处理可载入模块命令 modprobe

From&#xff1a;https://blog.csdn.net/good5101/article/details/39472291 linux内核模块相关命令&#xff1a;lsmod,depmod,modprobe,modinfo,insmod,rmmod 使用说明https://www.cnblogs.com/jacklikedogs/p/4659249.html Linux下加载.ko驱动模块的两种方法&#xff1a;insm…

Effective Java~35. 用实例域代替序数

许多枚举通常与单个 int 值关联。所有枚举都有一个 ordinal 方法&#xff0c;它返回每个枚举常量类型的数值位置。你可能想从序数中派生一个关联的 int 值&#xff1a; // Abuse of ordinal to derive an associated value - DONT DO THIS public enum Ensemble {SOLO, DUET, …

史上最牛房屋中介

“没钱就不要学人家买房。” “你不要跟他解释&#xff0c;你跟他说也没用。” “你买的房子在哪我也知道&#xff0c;你有老人孩子&#xff0c;你总有不在家的时候吧&#xff1f;”这是我和老婆买房的亲身经历&#xff0c;上海汉居房地产中介老板的雷人语录。1. 看完房子后到中…

科学互驳:大脑细胞活到老,长到老?

来源&#xff1a;中国生物技术网 作者&#xff1a;格格科学家发现&#xff0c;人脑中与学习、记忆和情感相关的区域在成年后依然会持续产生新的神经元。这与过去的理论恰恰相反&#xff0c;即青春期之后大脑停止产生新的神经元。这项发现有助于我们开发治疗神经系统疾病的新方…

linux非阻塞通话编程,linux 非阻塞式socket编程求助。。

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼一下客户端&#xff1a;#include#include#include#include#include#include#include#include#include#include#include#define MAXDATASIZE 256#define SERVPORT 4444#define STDIN 0int main(void){int sockfd;int recvbytes;char…

Linux 环境变量配置

From&#xff1a;https://www.linuxidc.com/Linux/2015-08/121192.htm .bash_profile和.bashrc的区别(如何设置生效)&#xff1a;https://www.cnblogs.com/persist/p/5197561.html Linux中环境变量包括系统级和用户级&#xff0c;系统级的环境变量是每个登录到系统的用户都要读…

Effective Java~36. 用EnumSet 代替位域

如果枚举类型的元素主要用于集合中&#xff0c;一般来说使用 int 枚举模式&#xff08;条目 34&#xff09;&#xff0c;下面将 2 的不同倍数赋值给每个常量&#xff1a; // Bit field enumeration constants - OBSOLETE! public class Text {public static final int STYLE_B…

在ACCESS中使用Group By语句

这样写不行&#xff0c;认为金额是一个变量 SELECT 编号, sum(本金) AS 金额 FROM sk GROUP BY 编号 ORDER BY 金额 只有这样 select * from (SELECT 编号, sum(本金) AS 金额 FROM sk GROUP BY 编号) ORDER BY 金额转载于:https://www.cnblogs.com/vincentfeng/archive/2009/1…

AI综述专栏 | 朱松纯教授浅谈人工智能:现状、任务、构架与统一

作者&#xff1a;朱松纯来源&#xff1a;人工智能前沿讲习班导读本文作者&#xff1a;朱松纯&#xff0c;加州大学洛杉矶分校UCLA统计学和计算机科学教授&#xff0c;视觉、认知、学习与自主机器人中心主任。文章前四节浅显探讨什么是人工智能和当前所处的历史时期&#xff0c;…

linux的grub损坏,如何利用Grub命令启动损坏的Linux系统?

能你的电脑因为某些原因损坏不能自动启动了。当然原因很多&#xff0c;可能的现象也很多。这里说一下这种情况下的处理方法&#xff0c;即&#xff1a;屏幕上提示 “ grub> ” &#xff0c;但你的硬盘上数据没有丢失&#xff0c;各分区都是好的。这种情况是你的 grub 信息损…

.net打包自动安装数据库

一).创建部署项目 1. 在“文件”菜单上指向“添加项目”&#xff0c;然后选择“新建项目”。 2. 在“添加新项目”对话框中&#xff0c;选择“项目类型”窗格中的“安装和部署项目”&#xff0c;然后选择“模板”窗格中的“安装项目”。在“名称”框中键入 setup1。 3. 单击“确…

Effective Java~37. 用EnumMap 代替序数索引

有时可能会看到使用 ordinal 方法&#xff08;条目 35&#xff09;来索引到数组或列表的代码。 例如&#xff0c;考虑一下这个简单的类来代表一种植物&#xff1a; class Plant {enum LifeCycle { ANNUAL, PERENNIAL, BIENNIAL }final String name;final LifeCycle lifeCycle;…

Python操作MSSQL

Python连接SQL Server数据库 - pymssql使用基础&#xff1a;https://www.cnblogs.com/baiyangcao/p/pymssql_basic.html 廖雪峰官网 之 Python 访问数据库&#xff08;SQLLite / MySQL / SQLAlchemy&#xff09; pymssql examples &#xff1a;http://pymssql.org/en/stable/p…

联想linux笔记本评测,联想(lenovo)G460AL-ITH Linux笔记本电脑接口评测-ZOL中关村在线...

模具和外观的“革新”让我们见识到不一样的联想G460&#xff0c;而在整机的接口扩展能力方面依旧主打实用性。机身左侧从左至右依次是安全锁孔、散热孔、RJ-45以太网接口、VGA视频输出接口、USB2.0接口、e-SATA接口(兼容USB2.0)、Express Card卡槽和HDMI高清视频输出接口。与前…

联合国召开会议讨论“杀手机器人”问题

来源&#xff1a;中国科学报 作者&#xff1a;赵熙熙来自29个国家的57位科学家日前呼吁联合抵制一所韩国大学&#xff0c;因为设立在该校的一个新的中心旨在利用人工智能强化国家安全。人工智能科学家表示&#xff0c;该大学正在开发自主武器&#xff0c;又称“杀手机器人”&a…

Effective Java~38. 用接口模拟可扩展的enum

使用枚举类型有一个很好的方法来实现这种效果。基本思想是利用枚举类型可以通过为 opcode 类型定义一个接口&#xff0c;并实现任意接口。 // Emulated extensible enum using an interface public interface Operation {double apply(double x, double y); } public enum Ba…

C语言的叙述大小写字母e1相同,第1、2章C语言基础练习题

第1章 C语言基础 第2章 顺序结构 练习题 学号&#xff1a; 姓名&#xff1a;单选&#xff1a;1. 当代电子计算机能够自动地处理指定的问题是因为( )。A. 计算机是电动的B. 有解决该问题的计算机程序 C. 事先存储了解决该问题的程序 D. 以上都不是2. C语言源程序的基本单位是( )…