隐式转换构造函数仿函数转换函数实例
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; }
以上是关于隐式转换构造函数仿函数转换函数实例的主要内容,如果未能解决你的问题,请参考以下文章