Go의 `fmt` 패키지가 인쇄할 때 `String()`보다 `Error()`를 우선시하는 이유는 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-24 02:33:10
원래의
877명이 탐색했습니다.

Why Does Go's `fmt` Package Prioritize `Error()` Over `String()` When Printing?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿