作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习枚举。我有以下问题:我不明白为什么会这样:
enum {fahrrad = 1, Auto = 2} einFahrzeug;
int main() {
einFahrzeug = fahrrad;
但这不是:
enum {fahrrad = 1, Auto = 2} einFahrzeug;
einFahrzeug = fahrrad;
int main() { ...
如果有答案我会很高兴
最佳答案
你不能给函数外的变量赋值。更简单的例子:
#include <iostream>
int x;
x = 42;
int main()
{
std::cout << x << '\n';
}
这给出:
prog.cpp:4:1: error: ‘x’ does not name a type
x = 42;
^
在 ideone.com 上试试:https://ideone.com/A1K06A
关于c++ - 在声明后定义一个枚举变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50090242/
我是一名优秀的程序员,十分优秀!