为什么使用类的前向声明

为什么使用类的前向声明

1. 什么是前向声明?

前向声明就是: 可以声明一个类而不定义它, 这个声明,有时候被称为前向声明(forward declaration),在程序中引入了类类型的Screen.在声明之后,定义之前,类Screen是一个不完全类型(incompete type),即已知Screen是一个类型,但不知道包含哪些成员.

 class Screen;//declaration of the Screen class

不完全类型只能以有限方式使用,不能定义该类型的对象,不完全类型只能用于定义指向该类型的指针及引用,或者用于声明(而不是定义)使用该类型作为形参类型或返回类型的函数.

2. 为什么需要前向声明?

Suppose you want to define a new class B that uses objects of class A. B only uses references or pointers to A. Use forward declaration then : you don't need to include <A.h> . This will in turn speed a little bit the compilation.

class A ;

class B {
private:
A* fPtrA ;
public:
void mymethod(const& A) const ;
} ;


转载于:https://my.oschina.net/ajian2014/blog/264075

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值