class X {
public:
X(int ii = 0) : i(ii) {
j = i; // j can't be accessed by non-static methods
}
What does : i(ii)
mean? More exactly, the two dots.
class X {
public:
X(int ii = 0) : i(ii) {
j = i; // j can't be accessed by non-static methods
}
What does : i(ii)
mean? More exactly, the two dots.