设计模式【单一职责原则】

单一职责原则

概念

对类来说,即一个类应该之负责一项职责,如果A类负责2个不同的职责:职责1、职责2,当职责1代码变更时,可能造成职责2的执行错误,所以需要将类A的力粒度分解成A1、A2分别负责职责1、职责2

单一职责原则的使用注意事项

1)降低类的复杂度,一个类只负责一项职责

2)提高类的可读性,可维护性

3)降低变更引起的风险

4)注意:通常情况下,我们应该遵循单一职责原则,只有逻辑足够简单,才可以在代码级别违反单一职责原则;在【类】中方法比较少的情况下,我们可以只在【方法级别】保证单一职责原则

简单代码示意

package com.shufang.rules;

/**
 * 本类主要解释=> 类的单一职责原则
 * 单一职责原则的使用注意事项:
 * 1)降低类的复杂度,一个类只负责一项职责
 * 2)提高类的可读性,可维护性
 * 3)降低变更引起的风险
 * 4)注意:通常情况下,我们应该遵循单一职责原则,只有逻辑足够简单,才可以在代码级别违反单一职责原则;
 *    在【类】中方法比较少的情况下,我们可以只在【方法级别】保证单一职责原则
 * 
 *=== TODO 记住:单一职责并不代表一个类只有一个方法,假如有订单、用户2个不同模块的类
 *=== class User{}  只负责用户层面相关功能的职责
 *=== class Order{} 只负责订单层面相关功能的职责
 */
public class SingleFunctionRuleDemo {
    public static void main(String[] args) {

        Vehicle vehicle = new Vehicle();

        /** 方案一
         * 摩托车 is running on the road !~
         * 汽车 is running on the road !~
         * 飞机 is running on the road !~  飞机不能在公路上跑吧,应该是在天上飞
         * @违反了单一职责原则   =>  方案二
         */
        vehicle.run("摩托车");
        vehicle.run("汽车");
        vehicle.run("飞机");


        /**
         * 方案二
         * 飞机 is flying in the sky !~
         * @遵循了【类级别】&【方法级别】单一职责原则,但是创建了3个不同的类,成本太高 => 方案三
         */
        SkyVehicle skyVehicle = new SkyVehicle();
        skyVehicle.run("飞机");


        /**
         * 方案三
         * 汽车 is running on the road !~
         * 飞机 is running on the road !~
         * 轮船 is floating on the water !~
         * @这个方案没有对原来的类做大的修改,只是增加方法
         * @在【方法级别】遵循单一职责原则,但是在【类级别】没有遵循单一职责原则
         */
        Vehicle02 vehicle02 = new Vehicle02();
        vehicle02.run("汽车");
        vehicle02.runAir("飞机");
        vehicle02.runWater("轮船");
    }
}


//方案一
class Vehicle {
    public void run(String vehicle) {
        System.out.println(vehicle + " is running on the road !~");
    }
}


//方案二
class SkyVehicle {
    public void run(String vehicle) {
        System.out.println(vehicle + " is flying in the sky !~");
    }
}

class WaterVehicle {
    public void run(String vehicle) {
        System.out.println(vehicle + " is floating on the water !~");
    }
}

class RoadVehicle {
    public void run(String vehicle) {
        System.out.println(vehicle + " is running on the road !~");
    }
}


//方案三
class Vehicle02 {
    // 慎用 if else if else .....else ,尽量用不同的方法、或者类将不同的分支隔离开
    public void run(String vehicle) {
        System.out.println(vehicle + " is running on the road !~");
    }

    public void runAir(String vehicle) {
        System.out.println(vehicle + " is running on the road !~");
    }

    public void runWater(String vehicle) {
        System.out.println(vehicle + " is floating on the water !~");
    }
}

GitHub:https://github.com/shufang000/design-pattern-ofmine

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值