class A {
public:
A(int x) : _x(x) {} //1
private:
int _x;
};
int main() {
A a = 10; //2
A b(a);
return 0;
}
@hrendashtam23 you can avoid using a semicolon. You can also check an explanation below the question - it has link on wiki with similar example
2017 Dec 1, 6:22:07 PM
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати