隐式转换构造函数仿函数转换函数实例

Posted 略加思索的河马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐式转换构造函数仿函数转换函数实例相关的知识,希望对你有一定的参考价值。

class B {
public:
    //隐式转换
    B(int i)
    {
        cout << i << endl;
        data = i;
    }
    //仿函数
    bool operator() (int i)
    {
        cout << i << endl;
        return i > 0;
    }
    //转换函数
    operator string()
    {
        return "class_string";
    }
private:
    int data;
};

int main() {
    B inst = 100;
    bool temp = inst(-100);
    if (temp) {
        cout << "hello operator" << endl;
    }

    string str = inst;
    cout << str << endl;

    getchar();
    return 0;
}

 

以上是关于隐式转换构造函数仿函数转换函数实例的主要内容,如果未能解决你的问题,请参考以下文章

explicit构造函数

通过隐式转换返回时是不是需要复制构造函数?

C++转换构造函数和隐式转换函数

通过构造函数隐式类类型转换创建的临时对象啥时候被销毁

避免构造函数中的隐式转换。 'explicit' 关键字在这里没有帮助

C++拷贝构造函数移动拷贝函数