#include "stdafx.h"
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class testclass
{
public:
testclass();
~testclass();
};
int _tmain(int argc, _TCHAR* argv[])
{
auto func = [](int n) {cout<<"number:" << n <<endl; } ;
func(333);
auto func1 = [](){return 3.14; };
float f1 = func1();
cout<<f1<<endl;
vector<int> moneys;
moneys.push_back(1000);
moneys.push_back(999);
int totalmoney = 0;
for_each(moneys.begin() , moneys.end(), [&totalmoney](int money)
{
totalmoney += money;
}
);
cout<<"totalmoney:" <<totalmoney<<endl;
return 0;
}
'Programing > c/c++' 카테고리의 다른 글
람다 샘플 코드 (0) | 2011.10.28 |
---|---|
MECRO 사용. 정의된 MECRO메크로 .....define ##의 사용 (0) | 2011.02.11 |
char [0] , char [1] 의미? (출처 http://minjang.egloos.com/2254472) (0) | 2011.01.05 |
비쥬얼 스튜디오 스타일 scheme (0) | 2010.12.08 |