reference class member in C++ Posted on 2020-05-16 Edited on 2021-01-25 In C++ Disqus: Symbols count in article: 223 Reading time ≈ 1 mins. 123456789101112131415struct A { int &m; A(int &x) : m(x) {}};int main() { int x = 5; A a(x); cout << a.m << endl; // 5 x = 6; cout << a.m << endl; // 6 a.m = 7; cout << x << endl; // 7 return 0;}