| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 592 人关注过本帖
标题:[求助]如何实现变长参数函数
只看楼主 加入收藏
C维
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-9-21
收藏
 问题点数:0 回复次数:2 
[求助]如何实现变长参数函数
就是类似printf这要的函数?
3q
搜索更多相关主题的帖子: 函数 参数 printf 
2007-09-22 22:36
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 
回复:(C维)[求助]如何实现变长参数函数

see below, brother.

==============

#include <iostream>
#include <cstdarg> // for va_list, va_start, va_end, va_arg

using namespace std;

bool debug = false;

void DebugOutput(const char* formartString, ...)
{
va_list ap;

if(debug)
{
va_start(ap, formartString);
vfprintf(stderr, formartString, ap);
va_end(ap);
}
}

void SquareInts(int counter, ...)
{
int temp;
va_list ap;
va_start(ap, counter);
for(int i=0; i<counter; ++i)
{
temp = va_arg(ap, int);
cout<<temp*temp<<" ";
}
va_end(ap);

cout<<endl;
}

int main()
{
debug = true;

DebugOutput("This is the debug output\n");
DebugOutput("int %d\n", 13);
DebugOutput("My name is %s and I am %d years old\n", "John Doe", 20);
DebugOutput("lots of integers here %d %d %d %d %d\n", 5, 7, 6, -3, 90);

cout<<"---------------------------------------------------------"<<endl;
SquareInts(3, 40, 23, -20);

return 0;
}


I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-09-23 00:05
C维
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-9-21
收藏
得分:0 
不是这种实现方式的有没有?
2007-09-23 09:16
快速回复:[求助]如何实现变长参数函数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023314 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved