본문 바로가기
IT/C Language

헝가리안 표기법 (Hungarian Notation)

by Jang HyunWoong 2015. 7. 10.

헝가리안 표기법은 변수를 이해하기 쉽게 선언하도록 표기하는 방법이다. 


아래 표는 기본적인 헝기리안 표기법 예시이다. 각 회사마다 다른 표기법을 가지고 있다.


코딩하면서 그 회사에 맞는 표기법을 사용하는 것이 좋다.


 

 

Prefix   Type                                                Example                                 
bbooleanbool bStillGoing;
ccharacterchar cLetterGrade;
strC++ Stringstring strFirstName;
sishort integershort siChairs;
nintegerint iCars;
lilong integerlong liStars;
ffloating pointfloat fPercent;
ddouble-precision floating pointdouble dMiles;
ldlong double-precision floating pointlong double ldLightYears;
szOld-Style Null Terminated Stringchar szName[NAME_LEN];
ifInput File Streamifstream ifNameFile;
isInput Streamvoid fct(istream &risIn);
ofOutput File Streamofstream ofNameFile;
osOutput Streamvoid fct(ostream &rosIn);
Sdeclaring a structstruct SPoint
{
Cdeclaring a classclass CPerson
{


윈도우

 

Prefix   Type                                                Example                                 
ID_Menu Item ResourceID_EDIT_CUT
IDS_StringIDS_STRING

IDC_

Dialog ControlIDC_EDITBOX
IDI_IconIDI_MENU
IDD_Dialog BoxIDD_ABOUTBOX
IDB_BitmapIDC_ARROW


반응형

'IT > C Language' 카테고리의 다른 글

visual studio 디버깅 팁  (0) 2015.08.03
Visual Studio 단축키 모음  (0) 2015.07.17
c언어 기초, 최대값, 최소값 출력  (0) 2015.04.30
c언어 기초알고리즘 연습  (0) 2015.04.30
C++ 텍스트파일 배열로 저장  (0) 2014.12.19