카테고리 없음

질문 List

도영수 2016. 6. 29. 01:50

1. 객체지향 언어의 컴파일 순서는 ? 

http://blackun.com/92

http://shinluckyarchive.tistory.com/285



2. 객체지향의 단점은 ?

http://hunit.tistory.com/151


 참고 : Heap과 Stack의 비교 http://hunit.tistory.com/145


3. ATL ?


ATL(Active Template library)는 많ㅇ은 생성 Small, 빠른 컴포런트 객체 모델(COM) 개체에 대한 

  C++베이스로된 탬플릿 설정이다.


4. 전처리문의 종류

http://sarghis.com/blog/802/


#if : …이 참이라면
#ifdef : …이 정의되어 있다면
#else : #if나 #ifdef에 대응된다.
#elif : “else + if”의 의미
#endif : #if, #ifdef, #infdef 이 끝났음을 알린다.


#include

#define

#undef

#if ~ #endif

#ifdef ~ #endif

#ifndef 헤더명_H__ ~ #endif

#defined

#error

#line

C의 predefined macro

  5. Static은 한번만 선언하면 다시 호출된다고 해도 데이터를 초기화하지 않는다,