C++第三次作業static

c++的static static對於C++的數據共享有着非常重要的作用。 在類中申明的static數據是從屬於類而不是對象,也就是說所有的對象都擁有共同該數據信息: #include<iostream> using namespace std; class Point { public: Point(int xx = 0, int yy = 0) { X = xx; Y = yy;
相關文章
相關標籤/搜索