c++类的前置声明

class a;
class B
{
public:
    B(){}
    a *c;
};
int i = 9;
class a
{
public:
    void print()
    {
        cout << "hello" << endl;
    }
};

int main(int argc, char** argv)
{
    B b;
    b.c->print();
    cout << i << endl;
    system("pause");
}

a *c;此处只能是指针或引用,才能用类的前置声明。而且 class a 不能在min()函数后面。

// readXml.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include "tinyxml\tinyxml.h"
#include <string>
#include <string.h>
#include <time.h>
#include <vector>
#include <map>
#include <fstream>
#define ARRAY_CNT( a ) ( sizeof(a)/(sizeof(a[0])) )	
using namespace std;

class b;
class a
{
public:
	a(){};
	b* f;
	int add(int i, int j)
	{  	
		j = f->up(j);
		return i + j;
	}
};
class b
{
public:
	int up(int c)
	{
		return c + 1;
	}
};

int main(int argc, char** argv)
{	
	a gg;
	cout << gg.f->up(2) << endl;
	cout << gg.add(1, 6) << endl;
	system("pause");
}

第23行要用的时候报错,注意解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值