Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

จะแปลงตัวแปรประเภท enum เป็นสตริงใน C ++ ได้อย่างไร?


ที่นี่เราจะดูวิธีการแปลงข้อมูลประเภท enum เป็นสตริงใน C ++ ไม่มีหน้าที่โดยตรงเช่นนั้น แต่เราสามารถสร้างฟังก์ชันของเราเองเพื่อแปลง enum เป็น string ได้

เราจะสร้างฟังก์ชันที่ใช้ค่า enum เป็นอาร์กิวเมนต์ และเราคืนค่าชื่อ enum เป็นสตริงจากฟังก์ชันนั้นด้วยตนเอง

โค้ดตัวอย่าง

#include <iostream>
using namespace std;

enum Animal {Tiger, Elephant, Bat, Dog, Cat, Mouse};

string enum_to_string(Animal type) {
   switch(type) {
      case Tiger:
         return "Tiger";
      case Elephant:
         return "Elephant";
      case Bat:
         return "Bat";
      case Dog:
         return "Dog";
      case Cat:
         return "Cat";
      case Mouse:
         return "Mouse";
      default:
         return "Invalid animal";
   }
}

int main() {
   cout << "The Animal is : " << enum_to_string(Dog) << " Its number: " << Dog <<endl;
   cout << "The Animal is : " << enum_to_string(Mouse) << " Its number: " << Mouse << endl;
   cout << "The Animal is : " << enum_to_string(Elephant) << " Its number: " << Elephant;
}

ผลลัพธ์

The Animal is : Dog Its number: 3
The Animal is : Mouse Its number: 5
The Animal is : Elephant Its number: 1