我有一些代码-我想看看如何将特定变量放入堆栈中。
#include <iostream>
using namespace std;
int fun(char b, long c, char d){
short p,q,r;
int y;
/***return &b,&c,&d,&p,&q,&r,&y;***/ - this one was for purpose of what should be returned, it is not valid code}
int main(){
fun('a',123,'b');
return 0;
}
预期结果将是特定变量的地址,这就是为什么我使用操作数&的原因。 但是,我仍然不知道将其正确放置在代码中的哪个位置,即MAIN函数。
备注:函数实际上没有任何作用,这只是出于计算机体系结构课程目的的练习。
答案 0 :(得分:3)
如果您想捕获fun
中的地址以查看它们在堆栈中的位置(或它们在内存中的任何位置),并且希望将所有这些地址返回给main
,则可以使用这个:
#include <iostream>
#include <map>
using namespace std;
map<const char*, void*> fun(char b, long c, char d) {
short p, q, r;
int y;
return {
{ "b", &b },
{ "c", &c },
{ "d", &d },
{ "p", &p },
{ "q", &q },
{ "r", &r },
{ "y", &y },
{ "b", &b }
};
}
int main() {
auto results = fun ('a', 123, 'b');
for (auto p: results) {
printf("%s is at %p\n", p.first, p.second);
}
}
对我来说显示
b is at 0x7ffdec704a24
c is at 0x7ffdec704a18
d is at 0x7ffdec704a20
p is at 0x7ffdec704a36
q is at 0x7ffdec704a38
r is at 0x7ffdec704a3a
y is at 0x7ffdec704a3c
请记住,正如其他人指出的那样,您不能在main
中使用这些地址!恕我直言,最好在printf
本身内进行fun
调用。但是不用担心!希望这会有所帮助。
答案 1 :(得分:0)
#include <iostream>
using namespace std;
int fun(char b, long c, char d){
short p,q,r;
int y;
cout<<(void*)&b<<endl<<&c<<endl<<(void*)&d<<endl;
cout<<&p<<endl<<&q<<endl<<&r<<endl<<&y<<endl;}
int main()
{
fun('a',123,'b');
return 0;}
好的,我明白了。这是解决方案。