gpt4 book ai didi

c++ - 为什么使用指针交换值不起作用?

转载 作者:行者123 更新时间:2023-11-30 18:16:54 26 4
gpt4 key购买 nike

我编写了以下代码。它应该交换两个变量的值...但是,一旦我编译代码,它就会显示 swap.exe 已停止工作...
为什么不起作用?

#include<cstdio>
#include<iostream>
using namespace std;
void swap(int *x, int *y)
{
int *temp;
*temp=*x;
*x=*y;
*y=*temp;
}
int main()
{
int i=5,j=10;
swap(&i,&j);
cout<<i<<" "<<j<<endl;

return 0;
}

如何解决这个问题?我的代码有什么问题吗?

最佳答案

更改为

void swap(int *x, int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}

如果你想交换两个int,为什么要使用指向int的指针作为临时变量?使用相同的类型。

关于c++ - 为什么使用指针交换值不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26340105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com