0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SOLID原則について個人的まとめ

Posted at

単一責任(Single responsibility)

There should never be more than one reason for a class to change.
あるクラスの変更理由は1つより多くてはならない。

意味

一つのモジュール(関数やクラス)はある一つの理由(責任)によってのみ変更されること。

逆ポーランド記法で入力を行う電卓のプログラムがあったする。入力を処理するモジュールは足し算モジュールや掛け算モジュールを利用して、計算結果を出力する。
しかし、逆ポーランド記法での入力は使いずらいため、普通の電卓の計算方式に修正が必要になった。この時、修正すべきモジュールは入力の処理を行っていたモジュールにのみ限定される。
これが入力を処理や四則演算が1つのモジュールになると、複数の責任を1つのモジュールで持つことになる。

開放閉鎖(Open/Closed)

software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification.
ソフトウェアの実体は拡張にオープンで、修正にクローズであるべき。

意味

ソフトウェアが変更される時には、既存のエンティティ(クラス)を変更せずに拡張しやすくあるべき。

リスコフの置換(Liskov substitution)

Functions that use pointers or references to base classes must be able to use objects of derived classes without knowing it.
基底クラスへのポインターや参照を使う関数はその派生クラスを知らなくても使えなければいけない。

意味

ある型(親クラスやインターフェース)を継承・実装したサブクラスが、親クラスの振る舞いを変更することなく、安全に置き換え可能であるべき、という原則。これにより、利用側のコード(関数やクラス)が、サブクラスの実装に依存せずに動作できる。

Dogという抽象クラスがあったとする。

abstract class Dog() {
    abstract fun bark():String
}

class BigDog() : Dog {
    override fun bark() {
        return "ワン"
    }
}

class SmallDog() : Dog {
    override fun bark() {
        return "キャン"
    }
}

DogにはBigDogとSmallDogの派生クラスがある。
ある関数ではDogクラスを引数にして、そのクラスのcall()を実行するとする。

fun feed(dog: Dog) {
    println("餌をあげる")
    println(dog.bark())
}

この時、feed()はBigDogやSmallDogの実装がわからなくてもcall()を実行することができる。
違反した例

class SmallDog() : Dog {
    override fun bark() {
        return 
    }
}

インターフェース分離(Interface segregation)

Many client-specific interfaces are better than one general-purpose interface.
一つの汎用的なインターフェースよりも、多くの特定用途のインターフェースの方が良い。

意味

必要としないモジュールには依存しない。

依存性逆転(Dependency inversion)

High-level modules should not import anything from low-level modules. Both should depend on abstractions (e.g., interfaces), [not] concretions.
高いレイヤーのモジュールは低レイヤーのモジュールでインポートされるべきでない。両方は具体ではなく抽象(例えばインターフェース)に依存すべき。

意味

先ほどのDog関数の例で,feed()はDogにのみ依存し、その具体である。SmallDog()やBigDog()には依存していない。

参考

https://qiita.com/baby-degu/items/d058a62f145235a0f007
https://ja.wikipedia.org/wiki/SOLID
https://amzn.asia/d/b8ulJe6

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?