[C++] STATIC
static method 생성시기 : 맨 처음 특징 1. class를 통 틀어서 오직 하나다 2. this pointer가 존재하지 않는다 3. instance field를 사용할 수 없다 기본 형태 클래스명::메소드( ); 객체.메소드( ); //객체를 만든 후 # :: - 범위 지정 연산자 (스코프) : 클래스 이름과 static 멤버 사이에서 static 멤버를 접근하기 위해 사용 #include "stdafx.h" #include #include using namespace std; class A { public : static void disp() { cout
LANGUAGE/C++
2018. 3. 8. 10:15