gpt4 book ai didi

c++ - 不定义函数的情况下如何运行此c++代码

转载 作者:行者123 更新时间:2023-12-01 15:03:57 25 4
gpt4 key购买 nike

任何人都可以解释该程序中定义的功能工作背后的逻辑。即使在注释了整个功能逻辑之后,在这种情况下,这仍可以提供正确的输出。

#include <iostream>
using namespace std;
void swap(int *a, int *b)
{ /*
int temp=0;
temp= *a;
*a= *b;
*b=temp;
*/
}
int main()
{
int x, y;
cout << "This program is the demo of function call by pointer \n\n";
cout << "Enter the value of x & y \n";
cout << "x: ";
cin >> x;
cout << "y: ";
cin >> y;
cout << "Value befor swap " << endl;
cout << "x= " << x << " y= " << y << endl;
swap(x, y);
cout << "Value after swap " << endl;
cout << "x= " << x << " y= " << y << endl;
return 0;
}

最佳答案

这就是为什么shouldn't do using namespace std; ,它只会导致这样的困惑。

发生的是在执行std::swap时调用了 swap(x, y);

顺便说一句,您的交换无效。它需要int指针,但是您给它int。这不会编译,您需要改为swap(&x, &y);。之所以起作用,是因为它始终使用std::swap

关于c++ - 不定义函数的情况下如何运行此c++代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60276091/

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