• 大小: 2.80KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-访问类中私有成员的函数(入门级实例216).zip

资源截图

代码片段和文件信息

// Friend.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “ioStream.h“
#include “string.h“

typedef char String[30];

class CPerson
{
private:
String name;//姓名
int age;//年龄
public:
CPerson(String Nameint Age)//构造函数
{
strcpy(nameName);
age = Age;
}
friend char * GetName(CPerson&p);//定义友员函数
};

char * GetName(CPerson&p)//获取CPerson类私有信息
{
return p.name;
}

int main(int argc char* argv[])
{

CPerson p(“张三“25);
cout << GetName(p) << endl;
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         573  2010-10-14 14:51  Friend\Friend.cpp
     文件        4536  2010-10-14 14:21  Friend\Friend.dsp
     文件         537  2010-10-14 14:21  Friend\Friend.dsw
     文件         293  2010-10-14 14:21  Friend\StdAfx.cpp
     文件         769  2010-10-14 14:21  Friend\StdAfx.h

评论

共有 条评论