Skip to search formSkip to main contentSkip to account menu

Single responsibility principle

Known as: Responsibility, SRP 
The single responsibility principle states that every module or class should have responsibility over a single part of the functionality provided by… 
Wikipedia (opens in a new tab)

Papers overview

Semantic Scholar uses AI to extract papers important to this topic.
2019
2019
Software evolves with modifications which lead to a deviation from the single responsibility principle. Continuous changes… 
2019
2019
01 | Single Responsibility Principle Open Closed Principle Liskov Substitution Principle Interface Segregation Principle… 
2018
2018
Architect and design data-intensive applications and, in the process, learn how to collect, process, store, govern, and expose… 
Review
2018
Review
2018
02 | 0:00:00 Start 0:01:42 Overview on Today's Lecture 0:04:29 Motivation 0:11:23 Foundations for this lecture 0:12:09 What is… 
Review
2016
Review
2016
21: Vorlesung | 0:00:00 Starten 0:00:47 Hinweise fur die Klausur 0:02:29 Overview on Today's Lecture 0:05:17 Motivation I 0:09… 
2013
2013
class A class, property, or method that is defined or declared, but has no useful functionality. Used to define a concept that… 
2011
2011
Vector operations play an important role in high performance computing and are typically provided by highly optimized libraries… 
2011
2011
Agile design principles and design patterns are very important for establishing good system structure.To programmer and system… 
2007
2007
class Polygon implements Shape { Point getVertex(index i) {...} void draw() {...} String toString() {...} } class Triangle…