第三章课后练习题(P144_3_4)

#include <iostream>
using namespace std;

class Test
{
private:
static int num;
public:
Test(int);
void show();
};
int Test::num = 5;
Test::Test(int n)
{
num = n;
}
void Test::show()
{
cout << num << endl;
}
int main()
{
Test t(10);
t.show();
system("pause");
return 1;
}

posted @ 2020-03-12 15:12  CollisionDimension  阅读(100)  评论(0编辑  收藏  举报