gpt4 book ai didi

c++ - 为什么 & 号在 `std::is_member_function_pointer` 中?

转载 作者:太空狗 更新时间:2023-10-29 21:20:12 24 4
gpt4 key购买 nike

std::is_member_function_pointercppreference 上的使用示例使用 & 符号,我在理解语法方面有些困难。

#include <type_traits>

class A {
void member_function() { }
};

int main()
{
// fails at compile time if A does not contain member_function as a function.
static_assert(std::is_member_function_pointer<decltype(&A::member_function)>::value,
"Class does not contain member.");
}

&A::member_functionA::member_function 是什么意思(如果是,有什么区别)?

此外,std::is_member_function_pointer 是否适用于函数模板?

最佳答案

这个表达式

&A::member_function

字面意思就是成员函数指针。 & 用于获取指向成员函数的指针。

关于c++ - 为什么 & 号在 `std::is_member_function_pointer` 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25212672/

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