gpt4 book ai didi

c++ - "inline operator T*() const"是什么意思?

转载 作者:行者123 更新时间:2023-11-30 02:25:57 25 4
gpt4 key购买 nike

我查看了一些关于 nullptr 的代码,发现:

const
class nullptr_t
{
public:
template<class T>
inline operator T*() const
{ return 0; }

template<class C, class T>
inline operator T C::*() const
{ return 0; }

private:
void operator&() const;
} nullptr = {};

inline operator T*() constinline operator T C::*() const 是什么意思?

它们的工作方式是否与 inline T operator *() constinline T operator C::*() const 相同?

为什么不在声明中指定返回类型?

最佳答案

它们是用户定义的转换运算符函数。

一个更简单的函数:

struct Foo
{
inline operator int () const { return 0; }
};

鉴于你可以使用

Foo f;
int i = f; // Invokes f.operator int () and initializes i with
// return value.

对于你这个类,它是一个nullptr的匿名类,它的意思是它可以转换为任何指针或成员函数指针。您可以使用:

int* ip = nullptr;

它使用第一个用户定义的转换运算符函数的返回值来初始化ip

struct Bar
{
void bar() {}
};

void (Bar::*ptr)() = nullptr;

它使用第二个用户定义的转换运算符函数的返回值来初始化ptr

关于c++ - "inline operator T*() const"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43440687/

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