목록C (3)
루토's sssssstory
Visual Studio 6.0에서 C 확장자로 된 파일을 CPP로 컴파일 하거나 CPP 확장자로 된 파일을 C 파일로 컴파일 하기 위해서는 아래와 같은 옵션을 사용하면 가능하다. /TC : CPP 확장자를 가진 파일을 C 확장자로 컴파일 /TP : C확장자를 가진 파일을 CPP 확장자로 컴파일 아래는 MSDN의 내용 /Tc, /Tp, /TC, /TP (Specify Source File Type)Syntax /Tcfilename /Tpfilename /TC /TP The /Tc option specifies that filename is a C source file, even if it doesn’t have a .C extension. The /Tp option specifies that filena..
C++은 C언어를 지원한다. 그래서 예전의 C소스를 가져다가 사용할 수 있다. C 언어는 symbol에서 함수의 이름만으로 찾을 수 있다. 이 것은 C언어가 같은 함수 이름을 사용하는 것을 허용하지 않기 때문인데, C++에서는 다형성으로 인해서 같은 이름을 사용할 수 있다. 그래서 함수이름만으로 찾는 것이 불가능하다. 이런 것을 위해서 내부적으로 함수 이름을 변경해주는데 이것이 name mangling 이다. 다음과 같이 된다. int foo(void) {return 1;} int foo(int ) {return 1;} void goo(void) { int i=foo(), j=f(0); } int _foo_i (void) {return 1;} int _foo_v (int ) {return 1;} void..
The Function Pointer Tutorials Extensive Index 1. Introduction to Function Pointers 2. The Syntax of C and C++ Function Pointers 3. How to Implement Callbacks in C and C++ ? 4. Functors to encapsulate C and C++ Function Pointers 5. Topic Specific Links ------------------------------------------------------------------------------- Function Pointer에 대한 Tutorial이 있는 곳. Lars의 홈페이지 출처 : http://www.n..