我有一个类模板,而该模板又包含一个模板类。该内部模板类又具有作为带有函数指针的构造函数。我之前使用过这个内部类来加载XML文件,现在我正在尝试使用这个类创建一个XML转换器。问题在于为内部类提供一组足够的构造函数参数。
编辑我已经接受了一些关于临时const字符串等的评论,并花时间创建一个仍然存在问题的简化案例。我对这个问题进行了大量修改。使用下面发布的代码现在返回的错误是
FormatConverter/main.cpp:7: instantiated from here
FormatConverter/FormatConverter.h:52: error: no matching function for call to 'XMLLoader<MessageType1>::XMLLoader(<unknown type>, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&)'
FormatConverter/XMLLoader.h:40: note: candidates are: XMLLoader<XMLTYPE>::XMLLoader(std::auto_ptr<XMLTYPE> (*)(std::istream&, std::string&, std::string&), const std::string&, const std::string&) [with XMLTYPE = MessageType1]
FormatConverter/XMLLoader.h:10: note: XMLLoader<MessageType1>::XMLLoader(const XMLLoader<MessageType1>&)
// main.cpp中
#include <iostream>
#include "FormatConverter.h"
#include "MessageTypes.h"
int main (int argc, char * const argv[]) {
std::string options = "";
FormatConverter<MessageType1, MessageType2> fConverter( options );
return 0;
}
// MessageTypes.h
#ifndef _MTYPES_
#define _MTYPES_
class MessageType1
{ };
class MessageType2
{ };
#endif
// FormatConverter.h
#ifndef _FORMAT_CONVERTER_
#define _FORMAT_CONVERTER_
#include "XMLLoader.h"
#include <memory>
#include <string>
template<typename T>
::std::auto_ptr<T>
dummyLoader( ::std::istream& dummyStream, std::string dummyFlags, std::string dummyProps )
{
return ::std::auto_ptr<T>( new(T) );
}
template<>
::std::auto_ptr<MessageType1>
dummyLoader( ::std::istream& dummyStream, std::string dummyFlags, std::string dummyProps )
{
return ::std::auto_ptr<MessageType1>( new(MessageType1) );
}
template<>
::std::auto_ptr<MessageType2>
dummyLoader( ::std::istream& dummyStream, std::string dummyFlags, std::string dummyProps )
{
return ::std::auto_ptr<MessageType2>( new(MessageType2) );
}
template <typename IN, typename OUT>
class FormatConverter {
public:
FormatConverter( std::string& options );
virtual ~FormatConverter( void );
void convert( std::auto_ptr<IN> input, std::string& stuff );
private:
std::string options_;
const std::string dummyFlags;
const std::string dummyProps;
XMLLoader<IN> loader_;
};
template <typename IN, typename OUT>
FormatConverter<IN, OUT>::FormatConverter( std::string& options )
: options_(options)
, dummyFlags("")
, dummyProps("")
, loader_ ( dummyLoader<IN>,
dummyFlags,
dummyProps )
{ }
template <typename IN, typename OUT>
FormatConverter<IN,OUT>::~FormatConverter( void )
{ }
template<typename IN, typename OUT>
void
FormatConverter<IN, OUT>::convert( std::auto_ptr<IN> input, std::string& stuff )
{ }
#endif
// XMLLoader.h
#ifndef _XMLLoader_H
#define _XMLLoader_H
#include <memory>
#include <string>
template <typename XMLTYPE>
class XMLLoader
{
public:
typedef ::std::auto_ptr<XMLTYPE> MSG_LOADER( std::istream&,
std::string&, //flags
std::string& ); //properties
XMLLoader( MSG_LOADER *loader,
const std::string& schemaSource = "NONE",
const std::string& ns="" );
virtual ~XMLLoader(void);
virtual std::auto_ptr<XMLTYPE> load(std::istream &is);
private:
MSG_LOADER* loader_;
std::string schemaSource_;
std::string namespace_;
};
#include <unistd.h>
#include <stdexcept>
#include "XMLLoader.h"
template<typename XMLTYPE>
XMLLoader<XMLTYPE>::XMLLoader(MSG_LOADER* loader,
const std::string& schemaSource,
const std::string& ns)
: loader_(loader)
, schemaSource_(schemaSource)
, namespace_(ns)
{ /* stuff */ }
template<typename XMLTYPE>
XMLLoader<XMLTYPE>::~XMLLoader( void )
{ }
template<typename XMLTYPE>
::std::auto_ptr<XMLTYPE>
XMLLoader<XMLTYPE>::load( std::istream& is )
{
std::string flags = "";
std::string props = "";
return loader_(is, flags, props );
}
#include "MessageTypes.h"
template
XMLLoader<MessageType1>::XMLLoader(
MSG_LOADER*,
const std::string&,
const std::string& );
template
XMLLoader<MessageType1>::~XMLLoader( void );
template
XMLLoader<MessageType2>::XMLLoader(
MSG_LOADER*,
const std::string&,
const std::string& );
template
XMLLoader<MessageType2>::~XMLLoader( void );
#endif
XMLLoader&lt; IN&gt;构造函数有3个参数:两个字符串和一个函数指针。它返回auto_ptr&lt; IN&gt;类型。我的dummyLoader模板似乎满足了这个要求,我在语法上尝试了一些细微的变化,但错误是指一个。
因此,编译器似乎无法识别我在实例化FormatConverter对象时尝试传递的dummyLoader的类型。任何人都可以解释原因吗?
答案 0 :(得分:1)
从字符串中删除const
:
loader_(dummyLoader, std::string("namespace"), std::string("schema_loc"))
事实上,std::string
有一个完全可用的转换构造函数:
loader_(dummyLoader, "namespace", "schema_loc")
像这样创建的临时值非常乐于绑定到常量引用。
答案 1 :(得分:0)
由于代码不完整,我无法编译它,即可能有更多错误。但是,之后有一个分号丢失:
FormatConverter( string& options )
答案 2 :(得分:0)
如果XMLLoader的构造函数需要函数指针而且dummyloader是类的方法,则需要绑定到对象(例如this)。
类似的东西:
std::bind(&FormatConverter<IN, OUT>::dummyLoader, this)
需要在你试图传递虚拟加载器的地方传递。