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

资源简介

C++实战源码-函数默认参数的使用(入门级实例186).zip

资源截图

代码片段和文件信息

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

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

void OutputString(char *pszText = “MRKJ“) //为参数提供一个默认值
{
cout << pszText << endl;
return ;
}

int main(int argc char* argv[])
{
OutputString(“BCCD“); //通过实际参数调用函数
OutputString(); //采用默认值调用函数
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         387  2010-10-14 19:47  Default\Default.cpp
     文件        4548  2010-10-14 19:47  Default\Default.dsp
     文件         539  2010-10-14 19:47  Default\Default.dsw
     文件         294  2010-10-14 19:47  Default\StdAfx.cpp
     文件         769  2010-10-14 19:47  Default\StdAfx.h

评论

共有 条评论