<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    人在江湖

      BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
      82 Posts :: 10 Stories :: 169 Comments :: 0 Trackbacks

    The following Java code illustrates the pattern with the example of a logging class. Each logging handler decides if any action is to be taken at this log level and then passes the message on to the next logging handler. The output is:

    Writing to stdout: Entering function y. Writing to stdout: Step1 completed. Sending via e-mail: Step1 completed. Writing to stdout: An error has occurred. Sending via e-mail: An error has occurred. Writing to stderr: An error has occurred.

    Note that this example should not be seen as a recommendation on how to write logging classes.

    Also, note that in a 'pure' implementation of the chain of responsibility pattern, a logger would not pass responsibility further down the chain after handling a message. In this example, a message will be passed down the chain whether it is handled or not.

    import java.util.*;
    abstract class Logger
    {
        public static int ERR = 3;
        public static int NOTICE = 5;
        public static int DEBUG = 7;
        protected int mask;
        // The next element in the chain of responsibility
        protected Logger next;
        public Logger setNext( Logger l )
        {
            next = l;
            return l;
        }
        public void message( String msg, int priority )
        {
            if ( priority <= mask )
            {
                writeMessage( msg );
            }
            if ( next != null )
            {
                next.message( msg, priority );
            }
        }
        abstract protected void writeMessage( String msg );
    }
    class StdoutLogger extends Logger
    {
        public StdoutLogger( int mask ) { this.mask = mask; }
        protected void writeMessage( String msg )
        {
            System.out.println( "Writing to stdout: " + msg );
        }
    }
    class EmailLogger extends Logger
    {
        public EmailLogger( int mask ) { this.mask = mask; }
        protected void writeMessage( String msg )
        {
            System.out.println( "Sending via email: " + msg );
        }
    }
    class StderrLogger extends Logger
    {
        public StderrLogger( int mask ) { this.mask = mask; }
        protected void writeMessage( String msg )
        {
            System.err.println( "Sending to stderr: " + msg );
        }
    }
    public class ChainOfResponsibilityExample
    {
        public static void main( String[] args )
        {
            // Build the chain of responsibility
            Logger l,l1;
            l1 = l = new StdoutLogger( Logger.DEBUG );
            l1 = l1.setNext(new EmailLogger( Logger.NOTICE ));
            l1 = l1.setNext(new StderrLogger( Logger.ERR ));
            // Handled by StdoutLogger
            l.message( "Entering function y.", Logger.DEBUG );
            // Handled by StdoutLogger and EmailLogger
            l.message( "Step1 completed.", Logger.NOTICE );
            // Handled by all three loggers
            l.message( "An error has occurred.", Logger.ERR );
        }
    }

    posted on 2011-02-12 23:17 人在江湖 閱讀(1703) 評論(0)  編輯  收藏 所屬分類: design pattern
    主站蜘蛛池模板: 亚洲成a人在线看天堂无码| 一级毛片免费播放| 日韩精品免费电影| 亚洲真人无码永久在线观看| 日本免费xxxx色视频| 亚洲日韩在线视频| 久九九精品免费视频| 久久夜色精品国产噜噜亚洲a| 噼里啪啦免费观看高清动漫4| 亚洲avav天堂av在线网爱情| 一二三四免费观看在线电影| 亚洲成人午夜电影| 成人免费午夜无码视频| 天堂亚洲国产中文在线| 在线A级毛片无码免费真人| 亚洲乱码中文字幕在线| 亚洲AⅤ永久无码精品AA| 羞羞视频免费网站日本| 老司机亚洲精品影视www| 两个人日本免费完整版在线观看1| 国产亚洲午夜高清国产拍精品| 国产线视频精品免费观看视频| 国产亚洲精品无码成人| 6080午夜一级毛片免费看| 亚洲一区二区三区国产精品无码 | 特黄特色的大片观看免费视频| 亚洲人妻av伦理| 日本免费中文字幕| 亚洲一区在线免费观看| 国产v片免费播放| 青青操在线免费观看| 亚洲美女中文字幕| 国产免费av片在线播放| 手机看片国产免费永久| 亚洲午夜久久久久久尤物| 亚洲?V乱码久久精品蜜桃| 亚洲欧洲免费视频| 亚洲av成人中文无码专区| 亚洲色自偷自拍另类小说| 日韩不卡免费视频| 国产A∨免费精品视频|