出C参数
发布时间:2020-12-16 03:09:04 所属栏目:百科 来源:网络整理
导读:void swap(int first,int second){ int temp = first; first = second; second = temp;} ////// int a=3,b=2;swap(a,b); 在上面的例子中,C编译器抱怨“void swap(int first,int second)”具有错误的语法错误,如“”之前“(/ {”.我不明白为什么?C不支持这个
void swap(int &first,int &second){ int temp = first; first = second; second = temp; } ////// int a=3,b=2; swap(a,b); 在上面的例子中,C编译器抱怨“void swap(int& first,int& second)”具有错误的语法错误,如“&”之前“(/ {”.我不明白为什么?C不支持这个功能,请澄清,谢谢. 解决方法
C不支持通过引用.所以你需要使用指针来做你想要实现的事情:
void swap(int *first,int *second){ int temp = *first; *first = *second; *second = temp; } int a=3,b=2; swap(&a,&b); 我不推荐这个:但是我补充一下它的完整性. 如果您的参数没有副作用,您可以使用宏. #define swap(a,b){ int _temp = (a); (a) = _b; (b) = _temp; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |