gpt4 book ai didi

c++ - 无法实例化重载的模板函数

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:41 27 4
gpt4 key购买 nike

我有一个名为 Hashtable 的类,其中包含多种用于批量加载输入数据的方法。这些方法中的每一个都通过模板支持不同的文件格式,并且还被重载,以便可以使用字符串(文件名)或解析器对象作为其第一个参数来调用它。

这是一个例子。 consume_seqfile 方法在类头中定义如下。

template<typename SeqIO>
void consume_seqfile(
std::string const &filename,
unsigned int &total_reads,
unsigned long long &n_consumed
);

template<typename SeqIO>
void consume_seqfile(
read_parsers::ReadParserPtr<SeqIO> &parser,
unsigned int &total_reads,
unsigned long long &n_consumed
);

然后像这样在类定义文件的底部实例化。

template void Hashtable::consume_seqfile<FastxReader>(
std::string const &filename,
unsigned int &total_reads,
unsigned long long &n_consumed
);


template void Hashtable::consume_seqfile<FastxReader>(
ReadParserPtr<FastxReader>& parser,
unsigned int &total_reads,
unsigned long long &n_consumed
);

这一切都很好,并且已经持续了几个月。我现在正尝试添加具有附加参数的此方法的新变体。它像这样在 header 中定义。

template<typename SeqIO>
void consume_seqfile_with_mask(
std::string const &filename,
Hashtable* mask,
unsigned int &total_reads,
unsigned long long &n_consumed
);

template<typename SeqIO>
void consume_seqfile_with_mask(
read_parsers::ReadParserPtr<SeqIO>& parser,
Hashtable* mask,
unsigned int &total_reads,
unsigned long long &n_consumed
);

并像这样在源文件中实例化。

template void Hashtable::consume_seqfile_with_mask<FastxReader>(
std::string const &filename,
Hashtable* mask,
unsigned int &total_reads,
unsigned long long &n_consumed
);


template void Hashtable::consume_seqfile_with_mask<FastxReader>(
ReadParserPtr<FastxReader>& parser,
Hashtable* mask,
unsigned int &total_reads,
unsigned long long &n_consumed
);

但是,当我尝试编译时,出现以下错误消息。

src/oxli/hashtable.cc:635:26: error: explicit instantiation of undefined function template 'consume_seqfile_with_mask'
template void Hashtable::consume_seqfile_with_mask<FastxReader>(
^
include/oxli/hashtable.hh:281:10: note: explicit instantiation refers here
void consume_seqfile_with_mask(

我的 Google/StackOverflow 技能让我失望了。知道可能导致此问题的原因吗?

更新:问题在于未显示代码。我确实有一个函数定义,但它缺少适当的Hashtable:: 命名空间前缀。所以...该功能确实未定义。通过正确包含命名空间解决了问题。

最佳答案

您声明了这些函数并稍后显式实例化它,但您实际上有函数的定义吗?

关于c++ - 无法实例化重载的模板函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45335985/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com