컴퓨터/이론 및 tools 사용

[리팩토링 refactoring] Simplifying Method Calls - 메소드 호출 단순화

review777777 2017. 1. 27. 01:35
반응형

Simplifying Method Calls 메서드 호출 단순화

이 기술은 메서도 호출을 더 단순하고 이해하기 쉽게 한다이것은 차례로 클래스 간의 상호작용을 위한 인터페이스를 단순화한다.


Simplifying Method Calls

- Rename Method

- Add Parameter

- Remove Parameter

- Separate Query from Modifier

- Parameterize Method

- Replace Parameter with Explicit Methods

- Preserve Whole Object

- Replace Parameter with Method Call

- Introduce PArameter Object

- Remove Setting Method

- Hide Method

- Replace Construcotr with Factory Method

- Replace Error Code with Exception

- Replace Exception with Test

 

반응형