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 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
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<void(int)> sum = [&](int a)
{
// some code
cout << get(2); // how can i use the get function?
};
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 |
---|