원문 출처 : http://msdn.microsoft.com/en-us/library/b0084kay.aspx

Predefined Macro 가 참 많은데, 몇가지 자주 쓰는 것만 정리해봅니다.



_MSC_VER

Evaluates to the major and minor number components of the compiler's version number. The major number is the first component of the period-delimited version number and the minor number is the second component.

For example, if the version number of the Visual C++ compiler is 15.00.20706.01, the _MSC_VER macro evaluates to 1500.

In Visual Studio 2010, _MSC_VER is defined as 1600.



_DEBUG

Defined when you compile with /LDd, /MDd, and /MTd. 



__FUNCTION__ / __FUNCTIONW__

Valid only in a function. Defines the undecorated name of the enclosing function as a string.

__FUNCTION__ is not expanded if you use the /EP or /P compiler option.

See __FUNCDNAME__ for an example. 

Steve Jobs에 의한 iPad 2 발표

Apple 은, 심히 대단하다고 느껴진다.

Apple 의 모든 상품들은 미려한 디자인을 통해 사람들을 유혹하고, 동일한 기능을 가진 다른 제품을 보기좋게 추월해버리곤 한다.

애초에 하드웨어 디자인 능력은 대단하다고 느껴왔지만,

오늘은 애플이 만든 소프트웨어들을 통해 또 한번 대단함을 느낀다.

정말이지.. 사고싶다!!!!!!!

+ Recent posts