2011年11月15日
摘要: 1:当无法列出传递函数的所有实参的类型和数目时,可用省略号指定参数表void foo(...);voidfoo(parm_list,...);2:函数参数的传递原理函数参数是以数据结构:栈的形式存取,从右至左入栈.eg:#include<iostream>void fun(int a, ...){int *temp =&a;temp++;for (int i = 0; i < a; ++i){cout << *temp<< endl;temp++;}}int main(){int a = 1;int b = 2;int c = 3;int d 阅读全文
posted @ 2011-11-15 15:20 一个人的天空@ 阅读(484) 评论(0) 推荐(0) 编辑