What will be printed out as a result of the following code's execution?
#include <iostream>
class A
{
public:
A(void){this->_num=0;}
int A(int num){this->_num=num;}
~A(void){std::cout << this->_num;}
private:
int _num;
};
int main(void)
{
A val(100);
return 0;
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать