Quiz 65
Anonymous
2,260 views
description:
There is a sequence point after the initalization of each base and member, thus the code is well-formed and defined
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
struct Foo
{
Foo(int n) : x(n++), y(n++), z(n++) {}
int x;
int y;
int z;
};
int main(int argc, char** argv)
{
Foo f(3);
std::cout << "x: " << f.x << std::endl;
std::cout << "y: " << f.y << std::endl;
std::cout << "z: " << f.z << std::endl;
return 0;
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.