Page History
...
Code Block | ||||
---|---|---|---|---|
| ||||
private int total; int IncreaseValue(int add){ return total+=add; } int SumValue(int x,int y){ return x+y; } |
StateLess-상태가없는
...
SumValue와 같이 함수를 호출한후, 호출한 횟수에 의해 결과값에 영향을 미치지 않는 케이스입니다.
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
private int total; int IncreaseValue(int add){ return total+=add; } int SumValue(int x,int y){ return x+y; } |
...
SumValue와 같이 함수를 호출한후, 호출한 횟수에 의해 결과값에 영향을 미치지 않는 케이스입니다.
...