C++ 多文件友元类函数编程
文件1:tt,h tt.cpp
//tt.h
#pragma once
#include "hufriend.h"
class tt
{
public:
friend void hufriend::lookHumanRoom(tt& tmphum);
private:
int m_privl;
};
//tt.cpp
#include "tt.h"
void hufriend::lookHumanRoom(tt& tmphum)
{
tmphum.m_p...
原创
2020-05-15 17:47:02 ·
771 阅读 ·
0 评论