摘要: Call by value--- part 1 void test(int i){ i=5; } void main(){ int i=0; test(i); cout << "i=" << i << endl; } the result i=0 Call by address--- part 1 void test(int... 阅读全文
posted @ 2009-02-03 08:57 jerry550409 阅读(190) 评论(0) 推荐(0) 编辑