If your UI code handles non-UI-related things, such as business logic, then the code lacks separation of concerns. Say you want to use a completely different UI - for example, you want to switch from a web service to creating an actual web site/application. You've have to completely reproduce all of your business logic in the new UI layer because the business logic is tied to the current UI.
Separation of concerns (SoC) is the process of separating a computer program into distinct features that overlap in functionality as little as possible. A concern is any piece of interest or focus in a program. Typically, concerns are synonymous with features or behaviors. Progress towards SoC is traditionally achieved through modularity of programming and encapsulation (or "transparency" of operation), with the help of information hiding. Layered designs in information systems are also often based on separation of concerns (e.g., presentation layer, business logic layer, data access layer, database layer).
SoC and SRP makes it easier and simpler to:
- maintain existing code
- reuse existing code
- write tests, especially unit tests
- write robust code, e.g. code in which changing one component is less likely to break other components
Here's an analogy (yes, it's simplified): a car is controlled in part using a steering wheel and a gas pedal. The steering wheel controls the car's direction, and the gas pedal controls the car's speed.
It would be harder for the driver to operate a car safely and precisely if one device controlled the car's direction and speed. For example, if the driver had to push the steering wheel in or pull it out to make the car go faster or slower, they might risk changing the car's direction at the same time. Likewise, the driver might accidentally change the car's speed when trying to turn.
Keeping the two concerns (speed and direction) separate makes it easier and safer to drive.
See also