2010. 1. 13. 23:30 Programming/Visual Studio
error LNK2019 fatal, error LNK1120
1. 헤더를 include만 하고 프로젝트에 헤더 및 .cpp를 포함하지 않을 경우... 2. .h 및 .cpp에 함수원형 및 함수호출을 해놓고 정작 함수 구현을 안 했을 경우... 3. .c 와 .cpp를 프로젝트에서 같이 사용할 때 .h 만 include하고 .cpp 는 include 하지 않을 경우... -aaa.h- void CheckLNK2019(int ntest); -aaa.cpp- void LNK2019Test() { CheckLNK2019(nTemp); } ===============================
참고 <http://edible.egloos.com/1240411>
LNK2019, LNK1120 Error 발생이유...
===============================
< 내가 실수한 부분 >
-test.h-
class test
{
void CheckLNK2019(int ntest);
};
-test.cpp-
void test::LNK2019Test() { test:: =>이걸 빼먹었다;;;
(생략)
}
'Programming > Visual Studio' 카테고리의 다른 글
error LNK2005: (0) | 2010.01.13 |
---|---|
error LNK2059 (0) | 2010.01.13 |
error LNK1104 (1) | 2010.01.13 |
VisualStudio 메모리 누수 체크 사용하기 (0) | 2009.12.19 |
error LNK2005: 에러 (0) | 2009.12.19 |