作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
struct MyStruct {
int x;
};
MyStruct theVar;
theVar.x = 10;
int main() {
return 0;
}
为什么编译器给我错误:
error: ‘theVar’ does not name a type
最佳答案
您只能在全局范围内的 main
之外创建变量并对其进行初始化。您不能像那样在全局范围内分配变量。
你有两个选择:
在创建时初始化它:
MyStruct theVar = {10};
或者
在main
中赋值:
theVar.x = 10;
请注意,第一种方法更好,因为它只有一个步骤,初始化,第二种方法有两个步骤初始化和赋值。
关于c++ - G++ "does not name a type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10222295/
我是一名优秀的程序员,十分优秀!