0

我正在使用 Visual Studio 10 在 C++ 中编程

我的程序的第一部分是 //Includes

//#include <LEDA\numbers>               //fatal error C1083: Cannot open include file: 'LEDA\numbers': No such file or directory

#include <LEDA/numbers/real.h>      
//Why do I get a linker error here
//All.obj : error LNK2001: unresolved external symbol "class leda::memory_manager leda::std_memory_mgr" (?std_memory_mgr@leda@@3Vmemory_manager@1@A)
#include <LEDA\numbers\integer.h>       //Here I used the system to write most of it for me
#include <LEDA/numbers/integer.h>            //Include LEDA. So 2 things 
        //1. including the same file twice does not matter
        //2. forward slashes and backward slashes are the same
      //I tried to use a wild card and said   #include <LEDA/numbers/*>  
      //But that did not work

 #include <LEDA/numbers/rational.h>
 #include <LEDA/core/string.h>
 #include <LEDA/core/array.h>
 #include <LEDA/numbers/bigfloat.h>  

      //The sqrt does not work


 #include <iostream>                          //include ordinary C++
 #include <math.h>

我有一个链接器错误

我尝试通过指定 LIB 用户环境符号来指定要使用的库

我尝试通过指定包含目录和库目录来指定要使用的库

在我的项目的属性中

我在某个地方犯了一个错误,但它在哪里

4

2 回答 2

0
#include <abcd.h> // looks for the include abcd.h in the INCLUDES path.

#include "abcd.h" // looks for the include abcd.h in the current path and then INCLUDES path.

根据您的描述,它看起来像您当前目录下的 LEDA 库。尝试使用 "" 而不是 <> 并查看它是否修复了您的错误。

于 2010-12-13T17:20:03.133 回答
0

这个程序有几个错误:

  1. LEDA\numbers 显然是一个目录,而不是一个包含文件。所以你不应该尝试包含它。
  2. (概念)#include 语句根本无助于解决链接器错误。相反,您需要指定要链接到链接器的库;库是以 .lib 结尾的文件。转到项目设置,然后添加包含缺失符号的库。
于 2010-12-13T17:17:00.603 回答