2004年12月6日
摘要: 1、C++函数参数入栈顺序--从右到左 下面的例子用来验证C++函数参数入栈顺序: void test(int i1, int i2, int i3) { printf(“i1=%d, i2=%d, i3=%d/n“,i1,i2,i3); } int i=0; test(++i,++i,++i); 阅读全文
posted @ 2004-12-06 11:23 zdleek 阅读(9) 评论(0) 推荐(0)