在下面的代码中,函数指针和我认为的“函数引用”似乎具有相同的语义:
#include <iostream>
using std::cout;
void func(int a) {
cout << "Hello" << a << '\n';
}
void func2(int a) {
cout << "Hi" << a << '\n';
}
int main() {
void (& f_ref)(int) = func;
void (* f_ptr)(int) = func;
// what i expected to be, and is, correct:
f_ref(1);
(*f_ptr)(2);
// what i expected to be, and is not, wrong:
(*f_ref)(4); // i even added more stars here like (****f_ref)(4)
f_ptr(3); // everything just works!
// all 4 statements above works just fine
// the only difference i found, as one would expect:
// f_ref = func2; // ERROR: read-only reference
f_ptr = func2; // works fine!
f_ptr(5);
return 0;
}
我在 Fedora/Linux 中使用 gcc 版本 4.7.2
更新
我的问题是:
为什么函数指针不需要解引用?为什么取消引用函数引用不会导致错误?- 是否有任何情况我必须使用其中一种?
- 为什么
f_ptr = &func;
有效?由于 func 应该衰减为指针?
虽然f_ptr = &&func;
不起作用(从 隐式转换void *
)