【C++函数对象】STL基础语法学习 | 仿函数&谓词&内建仿函数

简介: 重载函数调用操作符的类,其对象常称为函数对象。函数对象使用重载的()时,行为类似函数的调用,所以也叫仿函数。它的本质为一个类,而不是一个函数。

●仿函数


1.概念

       重载函数调用操作符的类,其对象常称为函数对象。函数对象使用重载的()时,行为类似函数的调用,所以也叫仿函数。它的本质为一个类,而不是一个函数。


2.使用

       功能特点:


               1.仿函数在使用时可以像普通函数那样调用,可以有参数和返回值

#include<iostream>
using namespace std;
//仿函数在使用时可以像普通函数那样调用,可以有参数和返回值
class add {
public:
  int operator()(const int value1, const int value2)
  {
  return value1 + value2;
  }
};
class sub {
public:
  int operator()(const int value1, const int value2)
  {
  return value1 - value2;
  }
};
class mul {
public:
  double operator()(const double value1,const double value2)
  {
  return value1 * value2;
  }
};
void text()
{
  add ad;
  cout << "相加:" << ad(10, 20) << endl;
  sub sb;
  cout << "相减:" << sb(10, 20) << endl;
  mul ml;
  cout << "相乘:" << ml(5.5,7) << endl;
}
int main()
{
  text();
}

5a3208372e8c40a9ae8684d46e62243e_3627ae01cab6436aa9d866dcc76a1630.png

               2.仿函数不同于普通函数的概念,它可以有自己的状态


#include<iostream>
using namespace std;
class print {
public:
  void operator()(const int value1,const int value2)//仿函数不同于普通函数的概念,它可以有自己的状态
  {
  cout << "相加:" << value1 + value2 << endl;
  cout << "相减:" << value1 - value2 << endl;
  cout << "相乘:" << value1 * value2 << endl;
  }
};
void text()
{
  print pt;
  pt(10,20);
}
int main()
{
  text();
}

867880a1633172f3182729ae018b5db6_4b04d767bfda40c486d5375267e2fd56.png

               3.仿函数可以作为参数传递

#include<iostream>
using namespace std;
class print {
public:
  void operator()(const int value1, const int value2)
  {
  cout << "相加:" << value1 + value2 << endl;
  cout << "相减:" << value1 - value2 << endl;
  cout << "相乘:" << value1 * value2 << endl;
  }
};
void scanf(print &pt)//仿函数可以作为参数传递
{
  pt(10,20);
}
void text()
{
  print pt;
  scanf(pt);
}
int main()
{
  text();
}

db5a21819d48cb8178fc85aa4f25cd26_b964328ecf934c738ce2f4a77b7d4cc6.png


●谓词


1.一元谓词

               如果仿函数的返回值为bool类型并且operator()接受一个参数,则称它为一元谓词

#include<iostream>
#include<algorithm>  //STL算法头文件定义
#include<vector>
using namespace std;
class unitary {
public:
  bool operator()(const int value)  //一元仿函数
  {
  return value == 20;
  }
};
void text()
{
  vector<int>v;
  for (int i = 1, j = 10; i <= 10; i++, j += 10)
  {
  v.push_back(j);
  }
  //10 20 30 40 50 60 70 80 90 100
  vector<int>::iterator p = find_if(v.begin(), v.end(), unitary());  
  //利用find_if这个算法,在一元仿函数中去判断vector容器中是否有元素20
  if (p == v.end())
  cout << "未找到" << endl;
  else
  cout << "从vector容器中找到了值为20的元素" << endl;
}
int main()
{
  text();
}

c2b8fd36f080532dcd42462058c1c5db_465e0f5a69464b05b92540e2d87f8212.png


2.二元谓词

               如果仿函数的返回值为bool类型并且operator()接受两个参数,则称它为二元谓词

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
void printvector(vector<int>&v)
{
  for (vector<int>::iterator i = v.begin(); i != v.end(); i++)
  {
  cout << *i<<" ";
  }
  cout << endl;
}
class compare {
public:
  bool operator()(const int value1,const int value2)  //二元仿函数
  {
  return value1 > value2;
  }
};
void text()
{
  vector<int>v;
  v.push_back(45);
  v.push_back(10);
  v.push_back(9);
  v.push_back(67);
  v.push_back(35);
  //45 10 9 67 35
  cout << "从小到大排序:";
  sort(v.begin(), v.end());
  //9 10 35 45 67
  printvector(v);
  cout << "从大到小排序:";
  sort(v.begin(), v.end(), compare());
  //67 45 35 10 9
  printvector(v);
}
int main()
{
  text();
}

4853745bebc5fa07cb8880db31935b05_33ae1e3646ba4c45b5fad7d23364d74f.png


●内建仿函数


1.算数仿函数

函数原型:


      ■template T plus //加法仿函数


      ■template T minus //减法仿函数


      ■template T multiplies //乘法仿函数


      ■template T divides //除法仿函数


      ■template T modulus //取模仿函数


      ■template T negate //取反仿函数


#include<iostream>
#include<functional>  //内建仿函数头文件定义
using namespace std;
void text()
{
  //相加仿函数
  plus<int>p;
  cout << "相加:" << p(10, 20) << endl;
  //相减仿函数
  minus<float>mi;
  cout << "相减:" << mi(3.18,2.90) << endl;
  //乘法仿函数
  multiplies<double>mu;
  cout << "相乘:" << mu(9.19, 3.14) << endl;
  //除法仿函数
  divides<double>di;
  cout << "相除:" << di(25.75, 3.15) << endl;
  //取模仿函数
  modulus<int>mo;
  cout << "取模:" << mo(9,4) << endl;
  //取反仿函数
  negate<int>n;
  cout << "取反:" << n(1) << endl;
}
int main()
{
  text();
}

f0d238cd286ff698be1058f77b09d7f3_7205fd1bb5b441389fcc960ec01376c9.png


2.关系仿函数

函数原型:

       ■template bool equal to         //等于


       ■template bool not equal to         //不等于


       ■template bool greater         //大于


       ■template bool greater_equal         //大于等于


       ■template bool less         //小于


       ■template bool less_equal         //小于等于

#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>
using namespace std;
void printvector(vector<int>&v)
{
  for (vector<int>::iterator i = v.begin(); i != v.end(); i++)
  {
  cout << *i<<" ";
  }
  cout << endl;
}
void text()
{
  vector<int>v;
  cout << "请向vector容器中输入元素:" << endl;;
  for (int i = 1; i <= 10; i++)
  {
  int elem; cin>>elem;
  v.push_back(elem);
  }
  //常用关系仿函数
  //大于=降序
  sort(v.begin(),v.end(),greater<int>());
  printvector(v);
  //小于=升序
  sort(v.begin(), v.end(), less<int>());
  printvector(v);
}
int main()
{
  text();
}

45593bec64f5724f94c9f325f478fe12_883c935be5f847c0a9e190cc5d5099f0.png


3.逻辑仿函数

函数原型:(该仿函数基本不用,所以下面代码中只做简单了解)


       ■template bool logical and         //逻辑与


       ■template bool logical or         //逻辑或


       ■template bool logical not         //逻辑非


#include<iostream>
#include<vector>
#include<functional>
#include<algorithm>
using namespace std;
void printvector(vector<bool>&v)
{
  for (vector<bool>::iterator i = v.begin(); i != v.end(); i++)
  {
  cout << *i<<" ";
  }
  cout << endl;
}
void text()
{
  vector<bool>v;
  v.push_back(true);
  v.push_back(false);
  cout << "初始状态:" << endl;
  printvector(v);
  vector<bool>v1;
  v1.resize(v.size());
  transform(v.begin(), v.end(), v1.begin(), logical_not<bool>());
  cout << "逻辑非后的状态:" << endl;
  printvector(v1);
}
int main()
{
  text();
}

4583e82ab5553632bb7f60a0d4fe1d6d_5a36ed05b14743f78533281b6d1a5854.png

目录
相关文章
|
20天前
|
编译器 C语言 C++
配置C++的学习环境
【10月更文挑战第18天】如果想要学习C++语言,那就需要配置必要的环境和相关的软件,才可以帮助自己更好的掌握语法知识。 一、本地环境设置 如果您想要设置 C++ 语言环境,您需要确保电脑上有以下两款可用的软件,文本编辑器和 C++ 编译器。 二、文本编辑器 通过编辑器创建的文件通常称为源文件,源文件包含程序源代码。 C++ 程序的源文件通常使用扩展名 .cpp、.cp 或 .c。 在开始编程之前,请确保您有一个文本编辑器,且有足够的经验来编写一个计算机程序,然后把它保存在一个文件中,编译并执行它。 Visual Studio Code:虽然它是一个通用的文本编辑器,但它有很多插
|
25天前
|
程序员 C++ 容器
在 C++中,realloc 函数返回 NULL 时,需要手动释放原来的内存吗?
在 C++ 中,当 realloc 函数返回 NULL 时,表示内存重新分配失败,但原内存块仍然有效,因此需要手动释放原来的内存,以避免内存泄漏。
|
29天前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
67 5
|
29天前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
51 1
|
1月前
|
存储 前端开发 C++
C++ 多线程之带返回值的线程处理函数
这篇文章介绍了在C++中使用`async`函数、`packaged_task`和`promise`三种方法来创建带返回值的线程处理函数。
45 6
|
1月前
|
C++
C++ 多线程之线程管理函数
这篇文章介绍了C++中多线程编程的几个关键函数,包括获取线程ID的`get_id()`,延时函数`sleep_for()`,线程让步函数`yield()`,以及阻塞线程直到指定时间的`sleep_until()`。
22 0
C++ 多线程之线程管理函数
|
1月前
|
算法 安全 Linux
【C++STL简介】——我与C++的不解之缘(八)
【C++STL简介】——我与C++的不解之缘(八)
|
1月前
|
编译器 C语言 C++
C++入门3——类与对象2-2(类的6个默认成员函数)
C++入门3——类与对象2-2(类的6个默认成员函数)
23 3
|
1月前
|
编译器 C语言 C++
详解C/C++动态内存函数(malloc、free、calloc、realloc)
详解C/C++动态内存函数(malloc、free、calloc、realloc)
153 1
|
1月前
|
存储 编译器 C++
C++入门3——类与对象2-1(类的6个默认成员函数)
C++入门3——类与对象2-1(类的6个默认成员函数)
28 1