• C# 中的守卫语句(GuardClause)


            代码的复杂度会影响我们对代码的理解

            一般而言,我们认为代码的最小单元就是一个函数或者方法,我们写出的代码应该能让人迅速理解,所以这要求我们的代码行数不要太多、命名清晰规范、功能单一(一个方法只做一件事)。导致代码复杂性增加的一个原因是条件判断,这时代码中往往会出现if或者Switch语句,如果没有组织好你的程序结构,这两种语句很容易将你的代码从简洁易懂的变成冗长,模糊,甚至低效的。

            所以有一个办法是通过使用守卫语句(Guard Clause)来避免这些问题。


     1.守卫语句

            守卫语句只是一个立即退出函数的检查,检查可能是正常返回也可能是抛出异常。如果你习惯于编写一个函数来确保要运行的函数的成员都是合法有效的,那么你在写主函数时没需要用else语句来处理错误的情况,这会反转你当前的工作流程,好处是会使你的代码更加简单,并且缩颈深度更少。

            先看不使用保护语句的例子:

    1. public void Subscribe(User user, Subscription subscription, Term term)
    2. {
    3. if (user != null)
    4. {
    5. if (subscription != null)
    6. {
    7. if (term == Term.Annually)
    8. {
    9. // subscribe annually
    10. }
    11. else if (term == Term.Monthly)
    12. {
    13. // subscribe monthly
    14. }
    15. else
    16. {
    17. throw new InvalidEnumArgumentException(nameof(term));
    18. }
    19. }
    20. else
    21. {
    22. throw new ArgumentNullException(nameof(subscription));
    23. }
    24. }
    25. else
    26. {
    27. throw new ArgumentNullException(nameof(user));
    28. }
    29. }

            显然可以重构上面的代码,消除else字句的需要。我们首选处理user 、subscription为null的情况,然后再处理正常情况:

    1. public void Subscribe2(User user, Subscription subscription, Term term)
    2. {
    3. if (user == null)
    4. {
    5. throw new ArgumentNullException(nameof(user));
    6. }
    7. if (subscription == null)
    8. {
    9. throw new ArgumentNullException(nameof(subscription));
    10. }
    11. if (term == Term.Annually)
    12. {
    13. // subscribe annually
    14. }
    15. else if (term == Term.Monthly)
    16. {
    17. // subscribe monthly
    18. }
    19. else
    20. {
    21. throw new InvalidEnumArgumentException(nameof(term));
    22. }
    23. }

    显然这样少了很多缩进深度,可读性是不是更高了呢?但是检查null引发的特定类型异常行为显然违反了DRY原则,可以 将代码提取到辅助方法中。

    1. public static class Guard
    2. {
    3. public static void AgainstNull(object argument, string argumentName)
    4. {
    5. if (argument == null)
    6. {
    7. throw new ArgumentNullException(argumentName);
    8. }
    9. }
    10. public static void AgainstInvalidTerms(Term term, string argumentName)
    11. {
    12. // note: currently there are only two enum options
    13. if (term != Term.Annually &&
    14. term != Term.Monthly)
    15. {
    16. throw new InvalidEnumArgumentException(argumentName);
    17. }
    18. }
    19. }

            那么最后代买就演变成:

    1. public void Subscribe3(User user, Subscription subscription, Term term)
    2. {
    3. Guard.AgainstNull(user, nameof(user));
    4. Guard.AgainstNull(subscription, nameof(subscription));
    5. Guard.AgainstInvalidTerms(term, nameof(term));
    6. if (term == Term.Annually)
    7. {
    8. // subscribe annually
    9. return;
    10. }
    11. // subscribe monthly
    12. }

            看起来是不是清晰多了。随着时间的推移,你在后续开发中遇到新的守卫情况(比如检查除数是否为0),可以继续添加Guard辅助方法。


    2.Ardalis.GuardClauses

            C#里面已经有这样一个包,帮我们实现了很多守卫情况,详情可见Ardalis.GuardClauses

    使用方法:

    1. public void ProcessOrder(Order order)
    2. {
    3. Guard.Against.Null(order, nameof(order));
    4. // process order here
    5. }
    6. // OR
    7. public class Order
    8. {
    9. private string _name;
    10. private int _quantity;
    11. private long _max;
    12. private decimal _unitPrice;
    13. private DateTime _dateCreated;
    14. public Order(string name, int quantity, long max, decimal unitPrice, DateTime dateCreated)
    15. {
    16. _name = Guard.Against.NullOrWhiteSpace(name, nameof(name));
    17. _quantity = Guard.Against.NegativeOrZero(quantity, nameof(quantity));
    18. _max = Guard.Against.Zero(max, nameof(max));
    19. _unitPrice = Guard.Against.Negative(unitPrice, nameof(unitPrice));
    20. _dateCreated = Guard.Against.OutOfSQLDateRange(dateCreated, nameof(dateCreated));
    21. }
    22. }

    目前支持的守卫语句有:

    • Guard.Against.Null (throws if input is null)
    • Guard.Against.NullOrEmpty (throws if string, guid or array input is null or empty)
    • Guard.Against.NullOrWhiteSpace (throws if string input is null, empty or whitespace)
    • Guard.Against.OutOfRange (throws if integer/DateTime/enum input is outside a provided range)
    • Guard.Against.EnumOutOfRange (throws if a enum value is outside a provided Enum range)
    • Guard.Against.OutOfSQLDateRange (throws if DateTime input is outside the valid range of SQL Server DateTime values)
    • Guard.Against.Zero (throws if number input is zero)

            显然这不会满足个性化的开发需求,你可以自己扩展这个包,跟扩展其它类一样:

    1. // Using the same namespace will make sure your code picks up your
    2. // extensions no matter where they are in your codebase.
    3. namespace Ardalis.GuardClauses
    4. {
    5. public static class FooGuard
    6. {
    7. public static void Foo(this IGuardClause guardClause, string input, string parameterName)
    8. {
    9. if (input?.ToLower() == "foo")
    10. throw new ArgumentException("Should not have been foo!", parameterName);
    11. }
    12. }
    13. }
    14. // Usage
    15. public void SomeMethod(string something)
    16. {
    17. Guard.Against.Foo(something, nameof(something));
    18. }

            实际使用中,也不是任何判断都要用守卫语句,守卫语句并不影响程序逻辑,性能等,关键在于提高代码质量,增强可读性,要用的恰到好处。

  • 相关阅读:
    第三章 SysML入门|系统建模语言SysML实用指南学习
    Egg使用jwt拦截jtoken验证
    JavaScript函数
    基于springboot实现4S店车辆管理系统项目【项目源码+论文说明】
    java:过滤器Filter
    云计算实验(HCL模拟器)
    【C语言】入门——操作符
    【吴恩达机器学习-笔记整理】推荐算法,协同过滤,均值规范化
    CNN和RNN结合与对比,实例讲解
    [附源码]Python计算机毕业设计Django学生社团信息管理系统
  • 原文地址:https://blog.csdn.net/q__y__L/article/details/126830653