函数对象(仿函数)

本文介绍了C++中的函数对象(仿函数)的三种基本用法:1) 作为普通函数使用,实现加法操作;2) 拥有自身属性,如记录调用次数;3) 作为参数传递给其他函数,展示其灵活性。通过示例代码详细解析了如何创建和使用函数对象。
摘要由CSDN通过智能技术生成

基本用法:

# include <iostream>
# include <string>

using namespace std;

//第一种用法:函数对象(仿函数)在使用时可以向普通函数那样有返回值,形参等
class student
{
    int operator()(int a,int b)
    {
        return a+b;
    }
};

int main (void)
{
    student stu;
    cout<<stu(1,2)<<endl;
    return 0;
}

//第二种用法:函数对象可以有自己的属性
class student
{
    public:
        student()
        {    
            num=0;
        }
        void operator(string str)
        {
            cout<<str<<endl;
            num++;
        }
        int num;
};

int main (void)
{
    student stu;
    stu("Hello C++");
    stu("Hello C++");
    stu("Hello C++");
    cout<<stu.num<<endl;//可以记录函数被调用的次数
    return 0;
}

//第三种用法:对象函数(仿函数)可以作为其他函数的形参
class student 
{
    public:
        void operator()(string str)
        {    
            cout<<str<<endl;
        }
};

void f(student& stu,string str)
{
    stu(str);
}

void g(student& stu)
{
    f(stu,"Hello C++");
}

int main (void)
{
    student stu;
    g(stu);//调用完以后会输出Hello C++;其实转了一大圈还是转回来了
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值