本文介绍了“未解决的令牌”链接错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 你好。 怎么办unresolved token发生链接错误。我如何修复它们? 链接... 链接:错误LNK2020:未解析的令牌(0A000015)?? _ 7type_info @@ 6B @ 链接:错误LNK2020:未解析的令牌(0A000016)_CxxThrowException 链接:错误LNK2020:未解析的令牌(0A000018)异常.__ ctor 链接:错误LNK2020:未解析的令牌(0A000019)异常.__ ctor 链接:错误LNK2020:未解析的令牌(0A00001A)异常.__ dtor 链接:错误LNK2020:未解析的令牌(0A00001C)删除 链接:错误LNK2020:未解析的令牌(0A000022)strlen 链接:错误LNK2020:未解析的令牌(0A000023)免费 链接:错误LNK2020:未解决令牌(0A000026)memmove 链接:错误LNK2020:未解析的令牌(0A00002C)memcpy 链接:错误LNK2020:未解析的令牌(0A000032)atexit 链接:错误LNK2020:未解析的令牌(0A00006F)memcmp 链接:致命错误LNK1120:12个未解析的外部Hello.How do "unresolved token" link errors occur. How do I fix them?Linking...LINK : error LNK2020: unresolved token (0A000015) ??_7type_info@@6B@LINK : error LNK2020: unresolved token (0A000016) _CxxThrowExceptionLINK : error LNK2020: unresolved token (0A000018) exception.__ctorLINK : error LNK2020: unresolved token (0A000019) exception.__ctorLINK : error LNK2020: unresolved token (0A00001A) exception.__dtorLINK : error LNK2020: unresolved token (0A00001C) deleteLINK : error LNK2020: unresolved token (0A000022) strlenLINK : error LNK2020: unresolved token (0A000023) freeLINK : error LNK2020: unresolved token (0A000026) memmoveLINK : error LNK2020: unresolved token (0A00002C) memcpyLINK : error LNK2020: unresolved token (0A000032) atexitLINK : error LNK2020: unresolved token (0A00006F) memcmpLINK : fatal error LNK1120: 12 unresolved externals解决方案 确保标准库中未链接的选项已关闭(默认情况下为)。确保你已经包含了你需要的任何标题,并且你正在以C ++语言模式编译和链接C ++文件。如果所有其他的都没有,请尝试启动一个新项目并重新添加所有源文件。 如果这些都不起作用,请回信并提供有关 您的项目,其中的文件以及它们所使用的语言,以及您正在使用的 选项。我希望这会有所帮助。 - 微软语音服务器开发人员Derrick Coetzee 这个帖子是原样提供的。没有保证,并且不授予 权利。Make sure that the option to not link in the standard library is off (itis by default). Make sure you''ve included any headers you need, and thatyou''re compiling and linking C++ files in C++ language mode. If all elsefails, try starting a new project and re-adding all your source files.If none of this works, please write back and give more information aboutyour project, the files in it and the language they''re in, and theoptions you''re using. I hope this helps.--Derrick Coetzee, Microsoft Speech Server developerThis posting is provided "AS IS" with no warranties, and confers norights. 我对你的问题进行了一些额外的研究。基于您的.NET 库依赖项,您似乎正在编写混合模式 应用程序,包括托管代码和非托管代码。混合模式 应用程序没有与C标准库链接,因为由于DLL加载问题,这是不安全的。这可能会导致未解决的 外部,就像你描述的那样。以下文章应该 解释如何正确解决您的问题: http://support.microsoft.com/?id=814472 创建一个新项目,然后尝试相关说明这个页面。 通过在C运行时库中链接你是在正确的轨道上,但 剩下的步骤更难以猜测。我希望这可以解决您的问题,但如果您遇到进一步的麻烦,请回信。 - Derrick Coetzee,Microsoft Speech Server开发人员 该帖子按原样提供。没有保证,并且没有赋予 权利。使用包含的代码样本须遵守 > http://www.microsoft.com/info/cpyright.htm 这篇关于“未解决的令牌”链接错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 阿里云证书,YYDS! 05-25 00:11