c++实验 引用与指针

发布时间:2024年01月06日

#include <iostream>

using namespace std;

void swap(int& a, int& b){
?? ?int tmp;
?? ?tmp = a;
?? ?a = b;
?? ?b = tmp;
}

void swap(int* a, int* b){
?? ?int tmp;
?? ?tmp = *a;
?? ?*a = *b;
?? ?*b = tmp;
}

int main(){
?? ?int a=9;
?? ?int b=10;
?? ?cout<<"a:"<<a<<" "<<"b:"<<b<<endl;
?? ?swap(a, b);
?? ?cout<<"a:"<<a<<" "<<"b:"<<b<<endl;
?? ?swap(&a, &b);
?? ?cout<<"a:"<<a<<" "<<"b:"<<b<<endl;
?? ?
?? ?return 0;
}

文章来源:https://blog.csdn.net/shilei_c/article/details/135433504
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。