STL:transform
生活随笔
收集整理的這篇文章主要介紹了
STL:transform
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
/* template < class InputIterator, class OutputIterator, class UnaryOperator > OutputIterator transform ( InputIterator first1, // 源容器的起始地址 InputIterator last1, // 源容器的終止地址 OutputIterator result, // 目標容器的起始地址 UnaryOperator op ); // 函數(shù)指針 // typedef 目標容器元素類型 (*UnaryOperator)(源容器元素類型); template < class InputIterator1, class InputIterator2, class OutputIterator, class BinaryOperator > OutputIterator transform ( InputIterator1 first1, // 源容器1的起始地址 InputIterator1 last1, // 源容器1的終止地址 InputIterator2 first2, // 源容器2的起始地址,元素個數(shù)與1相同 OutputIterator result, // 目標容器的起始地址,元素個數(shù)與1相同 BinaryOperator binary_op ); // 函數(shù)指針 // typedef 目標容器元素類型 (*BinaryOperator)(源容器1元素類型,源容器2元素類型); //*////
transform函數(shù)的作用是:將某操作應用于指定范圍的每個元素
頭文件:標準庫 <algorithm>?
#include <algorithm>
#include<ctype.h>
#include <string>
intmain()
{
string str("Hello World");
transform(str.begin(), str.end(), str.begin(), (int(*)(int))std::toupper);
cout << "-------------------------"<<str<<endl;
return 0;
}
結(jié)果:-------------------------HELLO WORLD
總結(jié)
以上是生活随笔為你收集整理的STL:transform的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Tengine---nginx平台初探
- 下一篇: readlink