유형 스위치 분기 내에서 유형 어설션 제거
Go에서 유형 스위치는 값 유형에 따라 실행을 분기하는 편리한 수단을 제공합니다. . 그러나 이러한 분기 내의 유형 어설션은 반복적이고 번거로울 수 있습니다.
유형 어설션 회피
불필요한 유형 어설션을 피하기 위해 유형 스위치의 결과를 다음에 할당할 수 있습니다. 유형화된 변수:
switch question := question.(type) { case interfaces.ComputedQuestion: handleComputedQuestion(question, symbols) case interfaces.InputQuestion: handleInputQuestion(question, symbols) }
이 예에서 유형 스위치는 질문 값을 변수에 할당합니다. 실행되는 브랜치에 따라 자동으로 입력되는 질문입니다. 이렇게 하면 분기 내에서 명시적인 유형 어설션이 필요하지 않습니다.
예
다음 코드를 고려하세요.
switch question.(type) { case interfaces.ComputedQuestion: handleComputedQuestion(question.(interfaces.ComputedQuestion), symbols) case interfaces.InputQuestion: handleInputQuestion(question.(interfaces.InputQuestion), symbols) }
유형 어설션을 다음으로 교체 변수 할당은 다음과 같은 동등한 코드를 생성합니다:
switch question := question.(type) { case interfaces.ComputedQuestion: handleComputedQuestion(question, symbols) case interfaces.InputQuestion: handleInputQuestion(question, symbols) }
By 이 접근 방식을 채택하면 기능을 희생하지 않고도 코드를 간소화하고 가독성을 높일 수 있습니다.
위 내용은 Go의 유형 스위치 분기 내에서 유형 어설션을 어떻게 피할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!