So today i was learning about c++ lambda functions. and i have some doubts.
Q.1) See this
why the output is 2?
Q.2) another question
Spoiler
tell me
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 160 |
5 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Two Questions about c++ lambda functions. [Must Read]
So today i was learning about c++ lambda functions. and i have some doubts.
Q.1) See this
function<int(int,int)> sum = [&](int a, int b)
{
++a;
return a+b;
};
int a = 2, b = 3;
int s = sum(a, b);
cout << a << endl;// why it's 2 i have passed 'a' with refrence. how to pass it with refrence.
Q.2) another question
function<int(int)> sum = [&](int a)
{
// some code
cout << get(2); // how can i use the get function?
return something;
};
function<int(int)> get = [&](int v)
{
int b = sum(3);
return v;
};
tell me
Rev. | Lang. | By | When | Δ | Comment | |
---|---|---|---|---|---|---|
en3 | Boring_Day | 2022-10-06 09:47:31 | 225 | |||
en2 | Boring_Day | 2022-10-06 06:58:39 | 38 | |||
en1 | Boring_Day | 2022-10-06 06:55:35 | 889 | Initial revision (published) |
Name |
---|