我的测试类XString
有两个强制转换运算符。但是编译器不对operator const wchar_t*()
使用显式强制转换fooA
。为什么?
class XString
{
public:
operator const CString&();
explicit operator const wchar_t*();
};
void fooA(const wchar_t* s);
void fooB(const CString& s);
void test()
{
XString x;
CString c = x; //OK
fooA(x); //Error C2664: 'void fooA(const wchar_t *)': cannot convert argument 1 from 'XString' to 'const wchar_t *'
fooB(x); //OK
}
答案 0 :(得分:3)
由于operator const wchar_t*
是explicit
,因此转换不会隐式完成。这就是explicit
的意义。
您可以使用static_cast
强制进行转换:
fooA(static_cast<const wchar_t*>(x));