gpt4 book ai didi

c++ - g++: 未在此范围内声明

转载 作者:行者123 更新时间:2023-11-28 03:15:33 25 4
gpt4 key购买 nike

我已经在 SO 上彻底搜索了类似的线程,但一无所获。搜索“未在此范围内声明”会产生很多结果,但我认为这是不同的。

基本上,以下行(在 CertainClass.cpp 文件中):

Archivo* arc;

生成:

error: ‘arc’ was not declared in this scope

选择不同的变量名没有区别。包含 Archivo 类。

如果我尝试在 CertainClass.h 文件中定义一个类似的指针,它编译没有问题。

有什么线索吗?

谢谢。

最佳答案

检查以确保您没有定义类实例或其他也称为 Archivo 的对象。例如,以下失败:

class Foo {
} Foo;

int main() {
Foo* boo;
}

错误:

test.cpp: In function ‘int main()’:
test.cpp:5: error: ‘boo’ was not declared in this scope

错误发生是因为*被解释为 *在名为 Foo 的对象之间进行操作和一个名为 boo 的对象.

要查看这是否真的是您的错误,请尝试编写

class Archivo *arc;

关于c++ - g++: 未在此范围内声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17014640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com