1

我在链接时遇到了一个奇怪的错误。

标题:

全局.h

#include <cmath>
#include <iostream>
#include <vector>

#include <blitz/tinyvec2.h>
typedef blitz::TinyVector<double,3> vettore;

#include "animal.h"

动物.h

#ifndef __ANIMAL_H
#define __ANIMAL_H


//! basic data structure for an animal -------------------------
struct Animal
{
   int age;
public:
   Animal(int _age) : age(_age) {}
};


//! contains info about a pair of animals ----------------------
struct AnimalPairs
{
  vettore distance;

  AnimalPairs( const vettore& _distance ) : distance(_distance) {}
};
typedef std::vector<AnimalPairs> pair_list;


//! data structure for a group of animals ----------------------
class AnimalVector
{
private:
  std::vector<Animal> animals;
  pair_list pairs;

public:
  AnimalVector( const  AnimalVector &other );

};

#endif

这是*cpp文件

主文件

#include "global.h"
int main ()
{
   std::cout<< "Hello" << std::endl;
}

动物.cpp

#include "global.h"

AnimalVector::AnimalVector( const AnimalVector &other )
{
  pairs = other.pairs;
}

编译我使用 g++ main.cpp animal.cpp -I/usr/include/boost -I/fs01/ma01/homes/matc/local/blitz/include

这是我得到的错误:

/tmp/ccGKHwoj.o: In function `AnimalPairs::AnimalPairs(AnimalPairs const&)':
animal.cpp:(.text._ZN11AnimalPairsC2ERKS_[_ZN11AnimalPairsC5ERKS_]+0x1f):
undefined reference to \`blitz::TinyVector<double,
3>::TinyVector(blitz::TinyVector<double, 3> const&)'
collect2: error: ld returned 1 exit status

由于某些原因,如果我将AnimalVector构造函数设置为inline,则代码将起作用。有人可以解释我为什么吗?

编辑:这里是blitz/tinyvec2.h https://github.com/syntheticpp/blitz/blob/master/blitz/tinyvec2.h的链接

4

1 回答 1

1

tinyvec2.cc是您在使用中声明的方法时需要包含的文件tinyvec2.h

我不喜欢那个命名(一个名为 的包含文件.cc),并且在得到你得到的错误之前会自己忽略它。

但是,如果您查看该 .cc 文件的内容,就会清楚其预期用途。

在类似的情况下(文件对的命名规则非常不同),我使用以下编码习惯:

第一个包含文件(它们的 .h)包含在任何其他需要此文件的 .h 文件中。第二个包含文件永远不会包含在其他 .h 文件中。

当您收到一个构建错误,表明其中一些缺失时,将第二个包含文件的包含添加到任何出现构建错误的 .cpp 文件中。

该计划非常有效地在大型项目中保持快速构建速度并最大限度地减少复杂交互模板类之间的循环依赖。但这可能并不是将 tinyvec2 拆分为两个包含文件的人所想的那样。

底线:任何出现您看到的链接错误的模块都需要在编译时包含 .cc 文件,但直接还是间接取决于您。在你的 global.h 中包含 .cc 更简单,最坏的情况是会减慢你的构建速度(因为这个 .cc 与你自己的 .h 文件没有循环关系)。

于 2015-10-27T15:16:30.563 回答