You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This metric measures the number of different functions that can be executed
by an object of that class in response to a message.
</p>
<p>
Classes with a high response metric can be difficult to understand and test,
because you have to read through all the functions that can possibly be called
in order to fully understand what's going on.
</p>
</overview>
<recommendation>
<p>
Generally speaking, when a class has a high response metric, it is because it
contains functions that individually make large numbers of calls and/or
because it has high efferent coupling. The solution is therefore to fix these
underlying problems, and the class's response will decrease accordingly.
</p>
</recommendation>
<references>
<li>
S. R. Chidamber and C. F. Kemerer. <em>A metrics suite for object-oriented design</em>. IEEE Transactions on Software Engineering, 20(6):476-493, 1994.