<CPP>

그리미 코드 스타일

CodeGrimie 2021. 1. 28. 13:49

최종 수정일 : 2021.01.28

 

헤더 재정의 방지(Include Guard)

#ifndef __EXAMPLE_H__
#define __EXAMPLE_H__

// CODE

#endif

_ (한 개)가 아니라 __(두 개) 사용한다.

큰 의미는 없지만 구분도 잘 되고 좀 더 균형감 있어보인다.

헤더 기입 순서

// C STANDARD LIBS
#include <cstdio>

// CPP STANDARD LIBS
#include <string>

// OS LIBS
#include <windows.h>

// LOCAL LIBS
#include "App.h"

 

들여쓰기(Identation Style)

int main()
{
    return (0);
}

예외없이 Allman(BSD)를 따른다.

 

 

정수(Integer)