제4강 정적 구성원의 예
현황: n개의 동종 대상, 각 대상은 각각 자신의 데이터 구성원이 있고 각자 값이 있으며 서로 상관없다.
기대: 특정한 데이터 구성원이 특정한 유형의 모든 대상에 공유되어 데이터 공유를 실현하기를 바란다.
스키마:글로벌 변수 사용
#include<iostream>
using namespace std;
int N = 0;
class Class
{
private:
int a;
public:
Class(){N++;a=0;}
void add(){N++;}
};
int main( )
{
Class c1, c2;
N=300;
c1.add();
cout<<N<<endl;
return 0;
}
예제 참조 정적 데이터 구성원
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,string nam, int a):
num(n),name(nam),age(a) { ++count; }
~Student() { --count; }
int getCount() { return count; }
private:
static int count;
int num;
string name;
int age;
};
int Student::count=0;
int main( )
{
Student stu1(1001,"He",40);
cout<<stu1.getCount()<<endl;
Student *pt=new Student(1001,"You",20);
cout<<pt->getCount()<<endl;
cout<<stu1.getCount()<<endl;
delete pt;
cout<<stu1.getCount()<<endl;
return 0;
}
클래스 이름으로 정적 데이터 구성원에 접근
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,string nam, int a):
num(n),name(nam),age(a) { ++count; }
~Student() { --count; }
int getCount() { return count; }
static int count;
private:
int num;
string name;
int age;
};
int Student::count=0;
int main( )
{
cout<<Student::count<<endl;
Student *pt=new Student(1001,"You",20);
cout<<pt->getCount()<<endl;
delete pt;
cout<<Student::count<<endl;
return 0;
}
왜 틀렸어요?
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,string nam, int a):
num(n),name(nam),age(a) { ++count; }
~Student() { --count; }
int getCount() { return count; }
private:
static int count;
int num;
string name;
int age;
};
int Student::count=0;
int main( )
{
cout<<Student::getCount()<<endl;
cout<<Student::count<<endl;
Student *pt=new Student(1001,"You",20);
cout<<pt->getCount()<<endl;
delete pt;
return 0;
}
정적 구성원 함수
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,string nam, int a):
num(n),name(nam),age(a) { ++count; }
~Student() { --count; }
static int getCount() { return count; }
private:
static int count;
int num;
string name;
int age;
};
int Student::count=0;
int main( )
{
cout<<Student::getCount()<<endl;
Student *pt=new Student(1001,"You",20);
cout<<pt->getCount()<<endl;
delete pt;
return 0;
}
정적 구성원 함수는 비정적 데이터 구성원을 처리할 수 없습니다
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,string nam, int a):
num(n),name(nam),age(a) { ++count; }
~Student() { --count; }
static int getCount()
{ age++; return count; }
private:
static int count;
int num;
string name;
int age;
};
int Student::count=0;
int main( )
{
cout<<Student::getCount()<<endl;
Student *pt=new Student(1001,"You",20);
cout<<pt->getCount()<<endl;
delete pt;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.