클린코드

변하는것을 캡슐화하라(Encapsulate what varies)

Everybody's Service 2021. 6. 20. 12:44

https://softwareengineering.stackexchange.com/questions/337413/what-does-it-mean-when-one-says-encapsulate-what-varies

 

What does it mean when one says “Encapsulate what varies”?

One of the OOP principles I came across is: -Encapsulate what varies. I understand what the literal meaning of the phrase is i.e. hide what varies. However, I don't know how exactly would it contr...

softwareengineering.stackexchange.com

 

OO Principle의 중요한 관점중 하나는,

 

Varying parts와 Non varying parts를 구분해서,

 

Varying parts를 캡슐화(Encapsulation)하여 따로 관리(Maintenance)하는 것이다.