gpt4 book ai didi

c++ - C++模板中的运算符重载

转载 作者:可可西里 更新时间:2023-11-01 17:58:55 25 4
gpt4 key购买 nike

我从某处读到以下代码:

template<class T> class A {
T a;
public:
A(T x):a(x) {}
operator T() const {return a;} // what is point here?
};


int _tmain(int argc, _TCHAR* argv[])
{
A<int> a = A<int>(5);
int n = a;
cout << n;
return 0;
}

下划线是什么意思?

operator T() const {return a;}

最佳答案

operator T() const {return a;}

这是 typecast operator .它会将类实例隐式转换为 T。在您发布的示例代码中,此转换是在行中执行的

int n = a;

关于c++ - C++模板中的运算符重载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7163727/

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