String()보다 Error()의 우선순위
Go에서는 fmt 패키지가 인쇄 작업을 처리합니다. 객체에 Error() 및 String() 메서드가 모두 구현되어 있는 경우 인쇄 목적에서는 Error() 메서드가 String()보다 우선합니다.
이러한 우선 순위는 오류의 실질적인 중요성에서 비롯됩니다. 오류는 일반적으로 일반적인 문자열 표현보다 전달하는 것이 더 중요합니다. 따라서 객체가 오류 인터페이스를 구현하는 경우 해당 Error() 메서드는 형식 지정 및 인쇄에 사용됩니다.
이 동작은 fmt에 대한 패키지 설명서에 설명되어 있습니다. 다음 발췌문에서는 우선순위 순서를 설명합니다.
3. If an operand implements the error interface, the Error method will be invoked to convert the object to a string, which will then be formatted as required by the verb (if any). 4. If an operand implements method String() string, that method will be invoked to convert the object to a string, which will then be formatted as required by the verb (if any).
예
다음 코드를 고려하세요.
package main import "fmt" type Person struct { Name string Age int } func (p *Person) String() string { return fmt.Sprintf("%v (%v years)", p.Name, p.Age) } func (p *Person) Error() string { return fmt.Sprintf("Failed") } func main() { a := &Person{"Arthur Dent", 42} z := &Person{"Zaphod Beeblebrox", 9001} fmt.Println(a, z) }
이 예에서 Person type은 String() 및 Error() 메서드를 모두 구현합니다. fmt.Println() 함수가 호출되면 String() 대신 Error() 메서드가 호출되어 다음과 같은 결과가 출력됩니다.
Failed Failed
이는 String()보다 Error()의 우선 순위를 보여줍니다. ) Go의 인쇄 기능에 있습니다.
위 내용은 Go의 `fmt` 패키지가 인쇄할 때 `String()`보다 `Error()`를 우선시하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!