STL之bind2st for_each 和 transform

由一個問題開始吧:編程 void print(int& a,const int b) { a+=b; } int main() { list<int> my_list; ......... for_each(my_list.begin(),my_list.end(), bind2nd(print,3) ); } 目的是依次循環,每一個節點加3 想經過bind2nd使函數的第二個值綁定爲3 但是經過
相關文章
相關標籤/搜索