1.函數對象
-
函數對象(仿函數):
重載函數調用操作的類,其對象常稱之為函數對象;
函數對象使用重載()時,其行為類似函數調用,也叫仿函數; - 函數對象本質:
函數對象(仿函數)本質是一個類,不是一個函數。
- 函數對象特點:
函數對象在使用時可以有形參、有返回值。
函數對象可以有自己的狀態值。
函數對象可以作為函數形參。
使用示例:
#include
using namespace std;
class myfunc
{
public:
myfunc()
{
count = 0;
}
//求和示例,重載()
int operator()(int a, int b)
{
return a + b;
}
//輸出示例,count記錄函數調用次數
void operator()(string str)
{
count++;
cout < str < endl;
}
int count;
};
void print(myfunc& p, string test)
{
p(test);
}
void test()
{
//創建一個函數對象
myfunc p1;
cout < "t函數對象形參返回使用示例:" < endl;
int ret=p1(10, 20);
cout < "ret=" < ret < endl;
cout < "t仿函數重載示例:" < endl;
p1("C++學習--仿函數使用示例!");
p1("C++學習--仿函數使用示例!");
p1("C++學習--仿函數使用示例!");
cout < "函數調用次數:" < p1.count < endl;
cout < "t仿函數作為函數形參:" < endl;
print(p1, "hello,歡迎學習c++課程");
}
int main()
{
test();
system("pause");
}
2.謂詞
-
謂詞:
函數對象返回值為bool類型,則稱之為謂詞; -
一元謂詞:
仿函數的形參只有一個; -
二元謂詞:
仿函數的形參有兩個參數;
#include
#include
#include
using namespace std;
class Check
{
public:
bool operator()(int val)
{
return val > 5;
}
bool operator()(int a1,int a2)
{
return a1 > a2;
}
};
void test()
{
vectorvtr;
/*插入數據*/
for (int i = 0; i < 10; i++)
{
vtr.push_back(i);
}
cout < "一元謂詞示例:查找vector容器中?>5的值" < endl;
/*查找vector容器中?>5的值*/
vector::iterator ret=find_if(vtr.begin(), vtr.end(), Check());//Check() ---匿名函數對象
if (ret ==vtr.end())
{
cout < "未查到到?>5的值!" < endl;
}
else
{
cout < "查找成功,大于5的值為:" <*ret
3.內建函數對象
-
內建函數對象:
STL中提供了一些內建函數對象:算術仿函數、關系仿函數、邏輯仿函數 --頭文件
3.1算術運算符
- 算術仿函數:實現四則運算。
加法:template T plus
減法:template T minus
乘法:template T mutiplies
除法:template T divides
取模:template T modulus
取反:template T negate --正數變負數,負數變正數
注意:其中negate是一元運算(只有一個參數),其余均為二元運算。
#include
using namespace std;
#include
void test()
{
//negate使用示例:
negate n;
cout < "negate取反示例:" < n(188) < endl;
plus p;
cout < "plus加法:" < p(10, 20) < endl;
minusm;
cout < "minus減法取絕對值:" < n(m(10, 20)) < endl;
multipliesmt;
cout < "multiplies乘法:" < mt(5, 3.15) < endl;
dividesd;
cout < "divides除法:" < d(10, 3) < endl;
modulusmd;
cout < "modulus取模:" < md(10, 3) < endl;
}
int main()
{
test();
system("pause");
}
3.2關系運算符
- 內建仿函數:關系運算符
大于: templatebool greater
大于等于:templatebool greater_equal
小于: templatebool less
小于等于:templatebool less_equal
等于: templatebool equal_to
不等于: templatebool not_equal_to
#include
using namespace std;
#include
#include
#include
void print(int val)
{
cout < val < " ";
}
int main()
{
vector vtr;
vtr.push_back(10);
vtr.push_back(40);
vtr.push_back(30);
vtr.push_back(60);
vtr.push_back(6);
/*sort排序,默認是從小到大,其默認的仿函數即less*/
sort(vtr.begin(), vtr.end());
for_each(vtr.begin(), vtr.end(), print);
cout < endl;
/*
要實現從大小,可以自行實現一個仿函數
class mycompare
{
public:
bool operator()(int a1,int a2)
{
return a1?>a2;
}
}
也可以直接使用STL內建仿函數:greater()
*/
sort(vtr.begin(), vtr.end(), greater());
for_each(vtr.begin(), vtr.end(), print);
cout < endl;
system("pause");
}
3.3邏輯運算符
- 內建仿函數--邏輯運算符
邏輯與:templatebool logical_and
邏輯或: templatebool logical_or
邏輯非: templatebool logical_not
#include
using namespace std;
#include
#include
#include
void print(bool val)
{
cout < val < " ";
}
void test()
{
vector vtr;
vtr.push_back(true);
vtr.push_back(true);
vtr.push_back(false);
vtr.push_back(false);
vectorvtr2;
vtr2.resize(vtr.size());//設置vtr2的容器大小
//將vtr容器內容取非放到vtr2中
transform(vtr.begin(), vtr.end(), vtr2.begin(), logical_not());
for_each(vtr.begin(), vtr.end(), print);
cout < endl;
for_each(vtr2.begin(), vtr2.end(), print);
cout < endl;
}
int main()
{
test();
system("pause");
}
審核編輯:湯梓紅
-
函數
+關注
關注
3文章
4331瀏覽量
62622 -
C++
+關注
關注
22文章
2108瀏覽量
73653
發布評論請先 登錄
相關推薦
評論