-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCalculator.java
41 lines (36 loc) · 1.01 KB
/
Calculator.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public class Calculator{
private int x;
private int y;
public Calculator(int x, int y){
//making a copy of the private vars in my constructor
this.x=x;
this.y=y;
}
//I am violating the single responsibility rule here because I am not only
//calculating the sum I am also outputting the sum
//So I comment out sum definition and sum output
public int sum(){
//int sum = x+y;
//System.out.println(sum);
return x+y;
}
public int subtraction(){
return x - y;
}
public int multiply(){
return x*y;
}
//The above class(Calculator) doesn't violate the single responsible
//principle because we want every class to take care of one thing
//and here my class as you can see takes on one responsibility.
//
//
//
/*Ways Of telling if we are violating the principle
1- There are two layers of architecture present in the same class
2- the number of public methods within my class
3- The methods which each class field uses
4- Number of imports
5- It is hard for us to unit test the class
*/
}