Perl 风格:降低复杂性(解决方案)

  • 写这个代替

        while (C1) {
            unless (C2) {
                statement;
                next;
            }
            statements;
            next unless C3;
            statements;
        }
    
  • 或者甚至

        while (C1) {
            statement, next unless C2;
            statements;
            next unless C3;
            statements;
        }
    

转发到 循环提升
返回到 降低复杂性
回到 索引

版权所有 © 1998, Tom Christiansen 保留所有权利。

标签

反馈

这篇文章有问题?请在 GitHub 上提交问题或拉取请求来帮助我们