C++枚举类型可以作为返回值类型吗

当然:

#include   
  
// 定义一个枚举类型  
enum class Color {  
    RED, GREEN, BLUE  
};  
  
// 函数返回枚举类型  
Color getRandomColor() {  
    static int nextColorIndex = 0;  
    Color color = Color(nextColorIndex);  
    ++nextColorIndex;  
    if (nextColorIndex > 2) nextColorIndex = 0; // 循环使用颜色值  
    return color;  
}  
  
int main() {  
    for (int i = 0; i < 5; ++i) {  
        Color randomColor = getRandomColor();  
        std::cout << "Random color: " << static_cast(randomColor) << std::endl;  
    }  
    return 0;  
}

C++枚举类型可以作为返回值类型吗_第1张图片

你可能感兴趣的:(示例,笔记,c++)