关于使用枚举作为索引的优化

关于使用枚举作为索引的优化

看了别人的博客学的,记录下,留用!

源代码

enum TemplateCode
{
    None = 0,
    Head = 1,
    Menu = 2,
    Foot = 3,
    Welcome = 4,
}

public string GetHtml(TemplateCode tc)
{
    switch (tc)
    {
        case TemplateCode.Head:
            return GetHead();
        case TemplateCode.Menu:
            return GetMenu();
        case TemplateCode.Foot:
            return GetFoot();
        case TemplateCode.Welcome:
            return GetWelcome();
        default:
            throw new ArgumentOutOfRangeException("tc");
    }
}

优化后

        public enum TemplateCode
        {
            Head = 1,
            Menu = 2,
            Foot = 3,
            Welcome = 4
        }
        public string GetHtml(TemplateCode tc, string msg)
        {
            Func<string, string> func;
            if (TemplateDict.TryGetValue(tc, out func))
            {
                return func(msg);
            }
            return "do nothing";
        }
        public readonly static Dictionary<TemplateCode, Func<string, string>> TemplateDict = InitTemplateFunction();

        private static Dictionary<TemplateCode, Func<string, string>> InitTemplateFunction()
        {
            var ditc = new Dictionary<TemplateCode, Func<string, string>>();
            ditc.Add(TemplateCode.Head, GetHead);
            ditc.Add(TemplateCode.Menu, GetMenu);
            ditc.Add(TemplateCode.Foot, GetFoot);
            ditc.Add(TemplateCode.Welcome, GetWelcome);
            return ditc;
        }
        public static string GetHead(string msg)
        {
            return msg + "a";
        }
        public static string GetMenu(string msg)
        {
            return msg + "b";
        }
        public static string GetFoot(string msg)
        {
            return msg + "c";
        }
        public static string GetWelcome(string msg)
        {
            return msg + "d";
        }

这种优化在分支比较多的时候很好用,少的时候作用有限

转载于:https://www.cnblogs.com/zhubangchao/p/8086564.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值