• 大小: 2.83KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签:

资源简介

C++实战源码-带有函数的结构体(入门级实例090).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “iostream.h“

struct Place
{
private:
int x;
int y;
public:
void SetPos(int Xint Y);
void GetPos(int &Xint &Y);
};

void Place::SetPos(int Xint Y)
{
x = X;
y = Y;
}

void Place::GetPos(int &Xint &Y)
{
X = x;
Y = y;
}

int main(int argc char* argv[])
{
Place p;//定义结构变量
p.SetPos(100120);//赋值
int x;
int y;
p.GetPos(xy);//获取值
//输出值
cout << “X:“ << x << “\n“
<< “Y:“ << y << “\n“;
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         578  2010-07-02 16:19  ClassFunc\ClassFunc.cpp
     文件        4572  2010-07-02 16:07  ClassFunc\ClassFunc.dsp
     文件         543  2010-07-02 16:07  ClassFunc\ClassFunc.dsw
     文件         296  2010-07-02 16:07  ClassFunc\StdAfx.cpp
     文件         769  2010-07-02 16:07  ClassFunc\StdAfx.h

评论

共有 条评论