-1

Say I break the principle of Separation of Concerns (SoC) and deliberately write, plan, and design my code to break, avoid and go against the SoC principle.

What other OO and SOLID principles will necessarily be affected, and how? Is some SoC necessary for code to work, or can it be completely avoided?

Dennis
  • 7,907
  • 11
  • 65
  • 115
  • 2
    Such questions about software architecture and design principles may be better suited at https://softwareengineering.stackexchange.com. – Hulk May 14 '19 at 22:35

1 Answers1

1

S and O will be mostly affected, but you could still preserve L, I and D if you were disciplined. You can write bad code without following any design best practices and still get it to work. I see the data scientists at my company do this every day!

RWRkeSBZ
  • 723
  • 4
  • 11