Besonderhede van voorbeeld: -5543357874743162242

Metadata

Author: WikiMatrix

Data

English[en]
This next example is a C/C++ programming language boilerplate, #include guard. #ifndef MYINTERFACE_H #define MYINTERFACE_H ... #endif This sets up, and checks, a global flag to tell the compiler whether the file myinterface.h has already been included.
Korean[ko]
다음은 C++ 프로그래밍 언어의 상용구 예제로 #include 보호이다. #ifndef _MYINTERFACE_H #define _MYINTERFACE_H ... #endif 여기서는 전역 변수를 이용하여 컴파일러가 myinterface.h 파일을 이미 읽었는지 여부를 확인할 수 있게 한다.

History

Your action: