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

资源简介

C++实战源码-编写同名的方法(入门级实例206).zip

资源截图

代码片段和文件信息

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

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

class OverloadingFunction {
public:
void info() {//定义没有参数的info()方法
        cout << “普通方法:1“ << endl;
    }
    void info(int age) {//定义包含整型参数的info()方法
        cout << “重载方法:“ << age << endl;
    }
};


int main(int argc char* argv[])
{
OverloadingFunction *ot = new OverloadingFunction();//创建OverloadingTest类对象
ot->info();//测试无参数info()方法
for (int i = 1; i < 5; i++) {//测试有参数info()方法
ot->info(i);
}

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         624  2010-10-13 18:49  OverloadFunction\OverloadFunction.cpp
     文件        4656  2010-10-13 18:45  OverloadFunction\OverloadFunction.dsp
     文件         557  2010-10-13 18:45  OverloadFunction\OverloadFunction.dsw
     文件         303  2010-10-13 18:45  OverloadFunction\StdAfx.cpp
     文件         769  2010-10-13 18:45  OverloadFunction\StdAfx.h

评论

共有 条评论