タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

golangと依存性注入に関するdelegateのブックマーク (1)

  • GoでDependency Injection - Carpe Diem

    概要 「Dependency Injection=依存性の注入」と言われますが、依存したオブジェクトを外部から入れることで何がメリットなのかを感じ取るのは実際に書いてみて分かると思うので、勉強としてまとめてみました。 Dependency Injectionとは デザインパターン 「依存性の注入」ではなく「依存するオブジェクトを注入」 DIコンテナとは別。デザインパターンなのでどの言語でもできる A dependency is an object that can be used (a service). An injection is the passing of a dependency to a dependent object (a client) that would use it. The service is made part of the client's state.[

    GoでDependency Injection - Carpe Diem
  • 1