Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BASIC
- graph
- Math
- C언어
- 정수론
- sorting
- 종만북
- greedy
- BFS
- DP
- php
- BOJ
- 따배씨
- dfs
- Cleancode
- 따라하면서 배우는 C언어
- String
- 생활코딩
- 인프런
- 백준
- 따라하며 배우는 C언어
- Algospot
- Python
- C
- server
- JavaScript
- programmers
- udemy
- web
- Algorithm
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.3 #define 매크로 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.3 #define 매크로
#include <stdio.h>
/*
Preprocessor directives begins with # simbol at the beginning of a line.
*/
/*
Macro
- An instruction that represents a sequence of instructions in abbreviated form.
*/
/*
#define SAY_HELLO printf("Hello, World!");
preprocessor Macro (name) body (or replacement list)
directive
Macro expansion - macro 가 body 의 내용으로 교체되는 것을 의미
*/
/*
Object-like macros vs Function-like macros
#define ONE 1
// 전처리기가 ONE 에 해당하는 부분을 1 로 교체, complier 입장에서는 변수는 아님
#define SQUARE(X) X*X
// compiler 입장에서는 함수가 아님, cpp 에서는 함수형 메크로 사용을 지양함
*/
#define PI 3.141592 /* Symbolic, or manifest, constans */
#define GRAVITY 9.8
#define THREE 3
#define MESSAGE "The greatst glory in living lies not in never falling, \
but in rising every time we fall."
#define NINE THREE*THREE
#define SAY_HELLO for(int i = 0; i < 10; i++) printf("Hello, World!\n");
#define FORMAT "Number is %d\n"
# define WITH_BLANK 1
#define MY_CH 'Z'
#define MY_ST "Z" // Z\0
#define LIMIT 20
const int LIM = 50;
static int arr1[LIMIT];
const int LIM2 = 2 * LIMIT;
/*
Tokens
#define SIX 3*2
#define SIX 3 * 2
#define SIX 3 * 2
*/
/* Redefining Constants */
#define SIX 2*3
#define SIX 2*3
// 한 file 안에서, define 을 여러번 선언 가능
// define 은 기본적으로 file scope
#define SIX 2 * 3 // Warning
#undef SIX
#define SIX 2 * 3
// undef 로 define 해제 후, 새롭게 define 하면 token 문제 해결 가능
int main()
{
int n = THREE;
SAY_HELLO
n = NINE;
printf(FORMAT, n);
printf("%s\n", MESSAGE); // replaced
printf("SAY_HELLO NINE\n"); // Not replaced
return 0;
}
- Macro 는 기본적으로 복사해서 붙여넣기 수준으로 교체해주는 것은 맞지만, 그렇지 않는 경우도 있으니 유의
- Compiler 는 Macro 의 내용을 알지 못함, 전처리기가 처리 하기 때문
#define SAY_HELLO for(int i = 0; i < 10; i++) printf("Hello, World!\n");
-
- SAY_HELLO 를 선언 할때, ';' (세미콜론) 을 붙였기 때문에, main 에서 SAY_HELLO 뒤에 ';' 을 붙이지 않아도 문제가 없다.
- 세미콜론이 두개가 붙여진다고 해서 문제가 생기는 것은 아님
- 오픈소스에서는 세미콜론을 안쓰는 경우가 많으므로 주의하자
- Macro 는 문자열 안에 있는 경우는 교체되지 않음
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.5 가변 인수 매크로 (0) | 2021.08.12 |
---|---|
[따배씨] 16.4 함수 같은 매크로 (0) | 2021.08.12 |
[따배씨] 16.2 전처리기를 준비하는 번역 단계 (0) | 2021.08.04 |
[따배씨] 16.1 전처리기가 해주는 일들 (0) | 2021.08.03 |
[따배씨] 15.12 메모리 줄맞춤 alignof, alignas (0) | 2021.07.29 |
Comments