Linker error LNK2001

前端 未结 4 1114
遇见更好的自我
遇见更好的自我 2020-12-10 16:34

When I try to create an object I get a LNK2001 error in Visual Studio, it\'s a problem with the constructor I think since changing the constructor changes the error.

4条回答
  •  情书的邮戳
    2020-12-10 17:11

    If you have linking error then syntactically your code is OK otherwise you'll get compiler errors.

    What you should check(or add) is path in Dependencies property of the project that uses Customer class. In VS you can find it "Project Properties->Configuration Properties->Linker->Input->Additional Dependencies". Seems that linker can't find the external library with Customer implementation. You can successfully compile your project cause all #include are correct but you fail on the stage of linking just because of dependencies.

提交回复
热议问题