error C2079: 'a' uses undefined class 'A' .

2023-11-22 09:08
文章标签 error undefined class uses c2079

本文主要是介绍error C2079: 'a' uses undefined class 'A' .,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在a.h中有: 

 

class A{

...

}

 

类A对应的实现部分在 a.cpp中

 

 

在b.h中有:

 

class A;

 

class B{

...

...

A a;   /* 错误 */

}

 

其实现文件b.cpp中:

#include "b.h"

#include "a.h"

 

...

 

 

以上的代码段在编译的时候会出现 error C2079: 'a' uses undefined class 'A'

 

原因(个人理解):

 

在编译阶段会为每种类型的类分配空间, 其中包括为其数据成员分配空间. 类B在编译的时候, 会为其数据成员a分配内存空间.

 

但由于类A的定义在类B之后定义, 编译器不知道该怎么为a分配相应的内存空间, 从而导致出现了 use of undefined class "A"

 

 

解决方案1:

 

在定义类B的数据成员时, 使用指针形式(A *a), 因为指针实际上是一个地址(4个字节), 在特定的编译环境下是不变的, 编译器能通过.

 

而后在其构造函数或其以后的其他地方进行初始化(a=new A()), 即可正常使用.

 

 

解决方案2:

 

调换 b.cpp中  #include "b.h" 和 #include "a.h"  的位置, 即:

 

文件b.cpp中:

#include "a.h"

#include "b.h"

 

转载于:http://blog.csdn.net/oathevil/article/details/5805029

这篇关于error C2079: 'a' uses undefined class 'A' .的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/409046

相关文章

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

提示:Decompiled.class file,bytecode version如何解决

《提示:Decompiled.classfile,bytecodeversion如何解决》在处理Decompiled.classfile和bytecodeversion问题时,通过修改Maven配... 目录问题原因总结问题1、提示:Decompiled .class file,China编程 bytecode

vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef‘ of undefined“

vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef’ of undefined” 最近用vue做的一个界面,引入了一个子组件,在父组件中调用子组件的方法时,报错提示: [Vue warn]: Error in v-on handler: “TypeError: Cannot read property ‘methods

类型信息:反射-Class

在说反射前提一个概念:RTTI(在运行时,识别一个对象的类型) public class Shapes {public static void main(String[] args) {List<Shape> shapes = Arrays.asList(new Circle(), new Square(), new Triangle());for (Shape shape : shapes

react笔记 8-17 属性绑定 class绑定 引入图片 循环遍历

1、绑定属性 constructor(){super()this.state={name:"张三",title:'我是一个title'}}render() {return (<div><div>aaaaaaa{this.state.name}<div title={this.state.title}>我是一个title</div></div></div>)} 绑定属性直接使用花括号{}   注

编译linux内核出现 arm-eabi-gcc: error: : No such file or directory

external/e2fsprogs/lib/ext2fs/tdb.c:673:29: warning: comparison between : In function 'max2165_set_params': -。。。。。。。。。。。。。。。。。。 。。。。。。。。。。。。。 。。。。。。。。 host asm: libdvm <= dalvik/vm/mterp/out/Inte

收藏:解决 pip install 出现 error: subprocess-exited-with-error 错误的方法

在使用 pip 安装 Python 包时,有时候会遇到 error: subprocess-exited-with-error 错误。这种错误通常是由于 setuptools 版本问题引起的。本文将介绍如何解决这一问题 当你使用 pip install 安装某个 Python 包时,如果 setuptools 版本过高或过低,可能会导致安装过程出错,并出现类似以下错误信息:error: subpr

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 (debug笔记)

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 ##一、 缘由及解决方法 把这个pytorch-ddpg|github搬到jupyter notebook上运行时,出现错误Nn criterions don’t compute the gradient w.r.t. targets error。注:我用

src/pyaudio/device_api.c:9:10: fatal error: portaudio.h: 没有那个文件或目录

(venv) shgbitai@shgbitai-C9X299-PGF:~/pythonworkspace/ai-accompany$ pip install pyaudio sounddeviceCollecting pyaudioDownloading PyAudio-0.2.14.tar.gz (47 kB)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

ERROR 2003 (HY000): Can't connect to MySQL server on (10061)

在linux系统上装了一个mysql-5.5,启动后本机都是可以访问的,操作都正常,同时建了一个%的用户(支持远程访问), root@debian:/# mysql -u loongson -pEnter password: Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id