C ++:将整数分配给整数指针

时间:2019-01-31 01:20:59

标签: c++ pointers

我尝试将my_next指针指向如下所示的整数值:

int my_function(int x) {
    return x+1;
}

int *my_next = &my_function(5);

但出现以下错误:

error: cannot take the address of an rvalue of type 'int'

任何想法我做错了什么以及如何解决?谢谢!

0 个答案:

没有答案