얕 은 분석tmain()과 main()의 차이

708 단어 tmain()main()
이렇게 두 줄 이 있다
#include
#include
우 리 는 헤더 파일에서 을 찾 을 수 있 습 니 다.tmain 의 매크로 정의    
#define _tmain      main
그래서 사전 컴 파일 을 거 친 후tmain 이 main 이 됐어 요.
main()은 표준 C++의 함수 입구 입 니 다.표준 C++의 프로그램 입구 점 함수,기본 문자 인 코딩 형식 ANSI
함수 서명:
int main();
int main(int argc, char* argv[]);
_tmain()은 windows 가 제공 하 는 유 니 코드 문자 집합 과 ANSI 문자 집합 을 자동 으로 변환 하 는 프로그램 입구 점 함수 입 니 다.
함수 서명:
int _tmain(int argc, TCHAR *argv[])
현재 프로그램의 문자 집합 이 유 니 코드 일 때 inttmain(int argc,TCHAR*argv[])
int wmain(int argc, wchar_t *argv[])
현재 프로그램의 문자 집합 이 ANSI 일 때 inttmain(int argc,TCHAR*argv[])
int main(int argc, char *argv[])

좋은 웹페이지 즐겨찾기