用户操作
[留言]  [发消息]  [加为好友] 
订阅我的博客
XML聚合    FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
happyjun2000的公告
<!-- Blog日历表开始 --> <script language="javascript"> var diarydays="<2004-09-02><2004-09-01><2004-08-31><2004-08-30><2004-08-29><2004-08-28><2004-08-27><2004-08-26><2004-08-25><2004-08-24><2004-08-23><2004-08-22><2004-08-21><2004-08-20><2004-08-19><2004-08-18><2004-08-17><2004-08-15><2004-08-13><2004-08-12><2004-08-11><2004-08-10><2004-08-09><2004-08-08><2004-08-06><2004-08-05><2004-08-04><2004-08-03><2004-08-02><2004-08-01><2004-07-31><2004-07-30><2004-07-29><2004-07-27><2004-07-26><2004-07-25><2004-07-22><2004-07-21><2004-07-20><2004-07-19><2004-07-18><2004-07-16><2004-07-15><2004-07-14><2004-07-13><2004-07-12><2004-07-11><2004-07-10><2004-07-09><2004-07-08><2004-07-06><2004-07-05><2004-07-04><2004-07-03><2004-07-02><2004-07-01><2004-06-30><2004-06-27><2004-06-26>"; </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style> .calendarBigBorder { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; text-decoration: none; width: 170; background-color: #FFFFFF; font-size: 9pt;border:1px dotted #999; } .calendarTd { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #000000; background-color: #eeeeee; height: 18px; width: 11%; text-align: center;} .calendarMInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; text-decoration: none; background-color: #FFFFFF; height: 15px; border: 1px solid #666666; width: 19px; color: #0099FF;} .calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 15px; width: 34px; border: 1px solid #666666;} .calendarMonthTitle { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; height: 24px; text-align: center; color: #333333; text-decoration: none; background-color: #eeeeee; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-bottom-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;} .calendarNow { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: bold; color: #000000; background-color: #C0C9D3; height: 18px; text-align: center;} .calendarDaySat { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarDaySun { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarLink { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; color: #333333; text-decoration: none; background-color: #E7E7F6; text-align: center; height: 18px;} .categoryTxt { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; line-height: 23px; color: #333333; text-decoration: none;} .categoryTable { border-right-width: 1px; border-bottom-width: 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: none; border-right-color: #000000; border-bottom-color: #000000; border-top-width: 1px; border-top-style: solid; border-top-color: #71b99c;} </style> <SCRIPT LANGUAGE="JavaScript"> var months = new Array("一", "二", "三","四", "五", "六", "七", "八", "九","十", "十一", "十二"); var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31,30, 31, 30, 31); var days = new Array("日","一", "二", "三","四", "五", "六"); var classTemp; var calendarHover="calendarHover"; var today=new getToday(); var year=today.year; var month=today.month; var newCal; //得到某月天数 function getDays(month, year) { if (1 == month) return ((0 == year % 4) && (0 != (year % 100))) ||(0 == year % 400) ? 29 : 28; else return daysInMonth[month]; } //得到当天时间信息 function getToday() { this.now = new Date(); this.year = this.now.getFullYear(); this.month = this.now.getMonth(); this.day = this.now.getDate(); } //生成日历 function Calendar() { newCal = new Date(year,month,1); //当前月的第一天 today = new getToday(); var day = -1; //用来判断日历中是否为当天 var startDay = newCal.getDay(); //当月开始时间 var endDay=getDays(newCal.getMonth(), newCal.getFullYear());//当月结束时间 var daily = 0; //用来生成日历中的天数值 if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth())) day = today.day; var caltable = document.all.caltable.tBodies.calendar; //得到日历表格的集合 var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); //得到当月天数 //生成日历 for (var intWeek = 0; intWeek < caltable.rows.length;intWeek++) for (var intDay = 0;intDay < caltable.rows[intWeek].cells.length;intDay++) { var cell = caltable.rows[intWeek].cells[intDay]; //得到单元袼 //生成字符串用于判断当天是否有日志 var montemp=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); if ((intDay == startDay) && (0 == daily)){ daily = 1;} var daytemp=daily<10?("0"+daily):(daily); var d="<"+newCal.getFullYear()+"-"+montemp+"-"+daytemp+">"; //选择样式 if(day==daily) cell.className="calendarNow"; else if(diarydays.indexOf(d)!=-1) cell.className="calendarLink"; else if(intDay==6) cell.className = "calendarDaySat"; else if (intDay==0) cell.className ="calendarDaySun"; else cell.className="calendarTd"; //生成值 if ((daily > 0) && (daily <= intDaysInMonth)) { cell.innerText = daily; daily++; } else cell.innerText = ""; } document.all.year.value=year; document.all.month.value=month+1; } function subMonth() { if ((month-1)<0) { month=11; year=year-1; } else { month=month-1; } Calendar(); } function addMonth() { if((month+1)>11) { month=0; year=year+1; } else { month=month+1; } Calendar(); } //得到响应事件 function getDiary() { var mon=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); var day=event.srcElement.innerText<10?("0"+event.srcElement.innerText):(event.srcElement.innerText); var d="<"+newCal.getFullYear()+"-"+mon+"-"+day+">"; if ("TD" == event.srcElement.tagName) if (("" != event.srcElement.innerText)&&(diarydays.indexOf(d)!=-1)) { diary.location="/chensheng913/archive/"+newCal.getFullYear()+"/"+mon+"/"+day+".aspx"; window.location.href = diary.location; } } function setDate() { if (document.all.month.value<1||document.all.month.value>12) { alert("月的有效范围在1-12之间!"); return; } year=Math.ceil(document.all.year.value); month=Math.ceil(document.all.month.value-1); Calendar(); } </SCRIPT> <table border="0" cellpadding="0" cellspacing="1" class="calendarBigBorder" id="caltable" width="200"> <thead> <tr align="center" valign="middle"> <td colspan="7" class="calendarMonthTitle"> <input name="year" type="text" class="calendarYInput" size="3" maxlength="4" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')">年 <input name="month" type="text" class="calendarMInput" size="1" maxlength="2" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')">月 [<a onClick="addMonth()" href="javascript:;">下月</a>] [<a onClick="subMonth()" href="javascript:;">上月</a>]</td> </tr> <tr align="center" valign="middle"> <SCRIPT LANGUAGE="JavaScript"> document.write("<TD class=calendarDaySun id=diary>" + days[0] + "</TD>"); for (var intLoop = 1; intLoop < days.length-1; intLoop++) document.write("<TD class=calendarTd id=diary>" + days[intLoop] + "</TD>"); document.write("<TD class=calendarDaySat id=diary>" + days[intLoop] + "</TD>"); </SCRIPT> </TR> </thead> <TBODY border=1 cellspacing="0" cellpadding="0" ID="calendar" ALIGN=CENTER ONCLICK="getDiary()" onmouseup=document.selection.empty() oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onbeforecopy="return false" oncopy=document.selection.empty() onselect=document.selection.empty()> <SCRIPT LANGUAGE="JavaScript"> for (var intWeeks = 0; intWeeks < 6; intWeeks++) { document.write("<TR style='cursor:hand'>"); for (var intDays = 0; intDays < days.length;intDays++) document.write("<TD class=calendarTd onMouseover='{classTemp=this.className;this.className=calendarHover}' onMouseOut='this.className=classTemp'></TD>"); document.write("</TR>"); } </SCRIPT> </tbody> </table> <script LANGUAGE="JavaScript"> Calendar(); </script> <!-- Blog日历表结束 --> <script language="javascript"> document.getElementById("Header1_HeaderTitle").outerHTML='<table><tr><td class="HeaderTitles"><font style="FONT-SIZE: 18pt;FONT-FAMILY: 楷体_GB2312;"><h1><a id="Header1_HeaderTitle" class="headermaintitle" href="http://blog.csdn.net/happyjun2000/" >蓝色游侠</a></h1></font><p id="tagline">如果想飞得高,就该把地平线忘掉!</p></td></tr></table>'; function window.onload() { var els=document.getElementById("main").document.getElementsByTagName("DIV"); for(i=0;i<els.length;i++) { if(els[i].className=="postTitle") els[i].innerHTML="<img src='http://www.microsoft.com/china/msdn/images/nhome/green_arrow.gif' border='0'>&nbsp;"+els[i].innerHTML; } els=document.getElementById("main").document.getElementsByTagName("H3"); for(i=0;i<els.length;i++) { if(els[i].innerHTML=="公告") els[i].innerHTML="蓝色游侠的BLOG"; } } </script> <EMBED src=http://www.tsts.net/a01/02/1/a.wma width=0 height=0 autostart="true">
文章分类
我的空间
我的Blog
我的MSN
我的RSS阅读器
存档

原创  分层结构 收藏

最近有许多网友在谈论三层的结构,我也来凑个热闹
以下纯属天南地北,说的错了,各位大哥不要奸笑:>

对于采用分层的模式,一直是不太明白
对于三层的理解是:表示层、逻辑层、数据层
他们的关系可能是
:没有层依赖表示层,但是
:表示层依赖逻辑层和数据层、逻辑层依赖数据层

好象是一种层层依赖的关系,虽然满足了上层只依赖下层的原则。但是这样逻辑层依赖数据层。

在逻辑层中的代码,有的时候要这样写,来调用数据层:
new dataaccess.dbdoc().addDoc() ;
//调用数据层的具体的类的方法

我们很多的时候是想把逻辑层给完全对立出来,因为一般来说,这一层是最有用的,也是最有价值进行复用的。

但是我们看到上面的情况是逻辑层依赖数据层,那么要真正的实现逻辑层的独立,就要脱离数据层的束缚,或者说是把逻辑层的职责进一步进行分离,把更抽象的逻辑独立出来。

设计模式说,要针对接口编程,就是要针对抽象,不要针对具象。

昨天回家没事,就想了这个问题,那么要消除逻辑层和数据层的依赖,就要定义他们的一个抽象接口,但是象上面的那种语句最好不要包含在真正的逻辑层,放到数据层也不合适,放到我们上面说的将要定义的接口也不可以,因为接口是不可以包含逻辑的。

那么,就最好就定义一个新的层,他的作用是:
1.消除逻辑层对数据层的依赖
2.协调逻辑层和数据层的工作
3.对表示层提供一个统一的接口

那么上面的代码就变成了:
//在newlayer中
1.
//调用逻辑层的逻辑方法
2.
//调用数据层的具体的类的方法
new dataaccess.dbdoc().addDoc() ;
3.
//继续调用逻辑层的逻辑方法

对于上面的代码实现好象有点把一个完整的逻辑拆分的很分散了,那么可以在逻辑层中使用模板模式来定义一个实现的框架,那么可能好一点

比如:
本来在逻辑层中代码如下:
//逻辑1
//new dataaccess.dbdoc().addDoc() ;
//逻辑二

那么添加新的层newlayer后,
逻辑层的代码可能如下:
//逻辑1
//virtual addDoc()
//逻辑二
新的层newlayer,继承上面的类,实现上面的虚函数
virtual addDoc()
{
 new dataaccess.dbdoc().addDoc() ;//调用数据层
}

咦,好象有点象外观模式吗,当初看petshop还不是什么示例的时候听说过,也没有意识到有什么好处呀,不就是提供一个统一的外观吗。

不管类试什么模式,上面是小弟的一些学习中的不成熟的思考,大家路过的看个热闹,是好淫的再指点一下小弟(不是说不指点的就不是好人了:>)

发表于 @ 2005年04月09日 10:15:00 | 评论( loading... ) | 编辑| 举报| 收藏

旧一篇:利用接口实现操作分离 | 新一篇:听说的好书

  • 发表评论
  • 评论内容:
  •  
Copyright © happyjun2000
Powered by CSDN Blog