> 백엔드 개발 > C++ > C 열거형 값의 텍스트 표현을 어떻게 인쇄할 수 있나요?

C 열거형 값의 텍스트 표현을 어떻게 인쇄할 수 있나요?

Mary-Kate Olsen
풀어 주다: 2024-11-30 08:28:11
원래의
923명이 탐색했습니다.

How Can I Print the Textual Representation of a C   Enum Value?

C: Enum 값을 텍스트로 인쇄

Enum 유형은 기호 이름으로 상수 집합을 나타내는 편리한 방법을 제공합니다. 기본적으로 열거형은 정수 값으로 표시됩니다. 그러나 열거형 값과 연관된 실제 텍스트를 표시해야 하는 상황에서는 기본 동작이 적합하지 않을 수 있습니다.

예를 들어 보겠습니다.

enum Errors {
    ErrorA = 0,
    ErrorB,
    ErrorC,
};

Errors anError = ErrorA;
std::cout << anError; // Outputs "0"
로그인 후 복사

이 예에서는 ErrorA, ErrorB, ErrorC의 세 가지 가능한 값이 있는 Errors 열거형이 있습니다. 여기서 ErrorA의 숫자 값은 0입니다. anError 변수를 인쇄하려고 하면 "0"이 출력됩니다. 원하는 "ErrorA" 대신.

if/switch 문을 사용하지 않고 이 문제를 해결하려면 다음과 같은 여러 방법을 사용할 수 있습니다.

1. 지도 사용:

#include <map>
#include <string_view>

// Define a map to associate enum values with their string representations
std::map<Errors, std::string_view> errorStrings = {
    {ErrorA, "ErrorA"},
    {ErrorB, "ErrorB"},
    {ErrorC, "ErrorC"},
};

// Overload the `<<` operator to print the string representation
std::ostream& operator<<(std::ostream& out, const Errors value) {
    out << errorStrings[value];
    return out;
}
로그인 후 복사

이 방법을 사용하면 오버로드된 << 연산자는 errorStrings 맵의 열거형 값과 연관된 문자열 표현을 찾아 출력합니다.

2. 구조 배열 사용:

#include <string_view>

// Define a struct to store enum values and string representations
struct MapEntry {
    Errors value;
    std::string_view str;
};

// Define an array of structures
MapEntry entries[] = {
    {ErrorA, "ErrorA"},
    {ErrorB, "ErrorB"},
    {ErrorC, "ErrorC"},
};

// Overload the `<<` operator to perform a linear search and print the string representation
std::ostream& operator<<(std::ostream& out, const Errors value) {
    for (const MapEntry& entry : entries) {
        if (entry.value == value) {
            out << entry.str;
            break;
        }
    }
    return out;
}
로그인 후 복사

이 방법은 구조 배열을 사용하여 열거형 값과 해당 문자열 표현을 저장합니다. 지정된 열거형 값과 일치하는 문자열을 찾기 위해 선형 검색이 수행됩니다.

3. 스위치/케이스 사용:

#include <string>

// Overload the `<<` operator to print the string representation using `switch/case`
std::ostream& operator<<(std::ostream& out, const Errors value) {
    switch (value) {
        case ErrorA: out << "ErrorA"; break;
        case ErrorB: out << "ErrorB"; break;
        case ErrorC: out << "ErrorC"; break;
    }
    return out;
}
로그인 후 복사

이 방법에서는 오버로드된 << 연산자는 switch/case 문을 사용하여 주어진 열거형 값에 대한 적절한 문자열 표현을 직접 인쇄합니다.

위 내용은 C 열거형 값의 텍스트 표현을 어떻게 인쇄할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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