码迷,mamicode.com
首页 > 其他好文 > 详细

可调用对象和其参数

时间:2014-09-15 17:28:49      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:sp   代码   c   line   r   bs   as   对象   tt   

实例代码:

class TT
{
public:
  inline int operator()(int i){return i +1;}
  inline double operator()(double dd){return dd + 2;}
};

 

int main()
{
    TT tt;
    //可调用对象和其参数
    cout<<tt(1.1)<<endl; //结果是3.1
    cout<<tt(1)<<endl;  // 结果是2
}

可调用对象和其参数

标签:sp   代码   c   line   r   bs   as   对象   tt   

原文地址:http://www.cnblogs.com/haibianxiaolu/p/3973121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!