免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2284 | 回复: 3
打印 上一主题 下一主题

[C++] 关于C++ 类的前向声明的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-19 21:10 |只看该作者 |倒序浏览
// 1.h 头文件
class A; //前向声明
class B
{
        public:
                B();
                void print();
        protected:

        private:
                A _a;

};

class A
{
        public:
                A(int i){_i=i;}
                void set_i(int i);
        protected:

        private:
                int _i;
};

// 1.cpp
#include<iostream>
using namespace std;
#include "1.h"
B::B()
        :_a(1)
{

}
void B::print()
{
        cout<<" cout from B"<<endl;

}

void A::set_i(int i)
{
        _i=i;
}

// main.cpp
#include<iostream>
using namespace std;
#include"1.h"
int main()
{
        A a(1);
        B b;
        b.print();
        return 0;
}


以上三个文件, 然后使用 命令> g++ 1.cpp main.cpp
会有有一个错误提示:
1.h:10: 错误: 字段 "_a"类型不完全
1.cpp: 5: 错误: 类B ' 没有名为'_a'的字段
1.h:10 错误: 字段_a 类型不完全
初学,在网上也找不到答案, 谢谢

论坛徽章:
0
2 [报告]
发表于 2013-03-19 21:24 |只看该作者
Forward Declaration声明的是不完整类型,只能使用它的引用或指针。

否则就要见到完整声明才能编译通过。

论坛徽章:
0
3 [报告]
发表于 2013-03-19 22:12 |只看该作者
回复 2# sonicling


    谢谢. 原来是这样阿.
还有这个用参数的也可以, 但是就是不能用在类的成员变量里面是么?
#include<iostream>
using namespace std;
class A;
class B
{
public:
        void f(A a);
};
class A
{
public:
        void g(B b);


};

void B::f(A a)
{
        cout<<"B::f(a)"<<endl;
        //a.g(*this);
}

void A::g(B b)
{
       
        cout<<" A::g(b)"<<endl;

}
int main()
{
        A a;
        B b;
        b.f(a);
}

论坛徽章:
0
4 [报告]
发表于 2013-03-19 23:40 |只看该作者
试过了, 用在参数里面可以.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP