我正在尝试编写一个float(float)函数类
#pragma once
class float_func
{
struct concept
{
virtual ~concept() {}
virtual float operator()(float) = 0;
virtual concept* clone() = 0;
};
template <typename T>
class impl : public concept
{
public:
impl(const T& ptr) : ptr_(ptr) {};
virtual float operator()(float arg1) {
return ptr_(arg1);
}
virtual concept* clone() {
return new impl<T>(ptr_);
}
private:
T ptr_;
};
public:
float_func() { object_ = nullptr; }
template <typename T> float_func(const T& ptr) : object_(new impl<T>(ptr)) {}
float_func(const float_func& other) : object_(other.object_->clone()) {}
~float_func() { delete object_; }
template <typename T>
float_func& operator=(const T& ptr) {
delete object_;
object_ = new impl<T>(ptr);
return *this;
}
float_func& operator=(const float_func& other) {
delete object_;
object_ = other.object_->clone();
return *this;
}
float operator()(float arg1) {
return (*object_)(arg1);
}
private:
concept* object_;
};
Run Code Online (Sandbox Code Playgroud)
尝试使用它:
#include <iostream>
#include <functional>
#include "float_func.h"
struct FloatFunctor
{
float operator()(float a) {
return a * 2.f;
}
};
float mul3(float a) {
return a * 3.f;
}
int main()
{
float_func f1 = FloatFunctor();
float_func f2 = &mul3;
//float_func f3 = mul3; //! does not compile
std::function<float(float)> sf = mul3;
std::function<float(float)> sf2 = &mul3;
std::cout << f1(1) << " " << f2(2) << " " << sf(3) << " " << sf2(4) << std::endl;
return 0;
};
Run Code Online (Sandbox Code Playgroud)
float_func f3 = mul3 不编译,但stl版本确实编译.
错误消息:
float_func.cc
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCLUDE\xlocale(336) : wa
rning C4530: C++ exception handler used, but unwind semantics are not enabled. S
pecify /EHsc
e:\src\tmp\type_erasure\float_func.h(14) : warning C4180: qualifier applied to f
unction type has no meaning; ignored
e:\src\tmp\type_erasure\float_func.h(28) : see reference to class templa
te instantiation 'float_func::impl<T>' being compiled
with
[
T=float (float)
]
float_func.cc(20) : see reference to function template instantiation 'fl
oat_func::float_func<float(float)>(T (__cdecl &))' being compiled
with
[
T=float (float)
]
e:\src\tmp\type_erasure\float_func.h(22) : error C2207: 'float_func::impl<T>::pt
r_' : a member of a class template cannot acquire a function type
Run Code Online (Sandbox Code Playgroud)
你能解释一下这个错误吗?
std :: function如何处理这种模板参数或如何修改我的代码以支持 float_func f3 = mul3?
表达式mul3有一个函数类型:float(float)而不是函数指针类型(如float (*)(float)).因此,ctor模板float_func推导T为此函数类型float(float):
template <typename T> float_func(const T& ptr)
Run Code Online (Sandbox Code Playgroud)
替换后:
float_func(float (&ptr)(float)) // T = float(float)
Run Code Online (Sandbox Code Playgroud)
这导致实例化impl<float(float)>反过来试图声明这个函数类型的成员(T ptr_) - 但这是非法的[temp.arg.type]/3:
如果声明通过依赖于template-parameter的类型获取函数类型,并且这导致不使用函数声明符的语法形式的声明具有函数类型,则该程序是格式错误的.[ 例如:
Run Code Online (Sandbox Code Playgroud)template<class T> struct A { static T t; }; typedef int function(); A<function> a; // ill-formed: would declare A<function>::t // as a static member function- 结束例子 ]
我能想到的最简单的解决方案是通过值获取接收器参数:
template <typename T> float_func(T ptr)
Run Code Online (Sandbox Code Playgroud)
这推断出函数类型表达式的函数指针类型(强制执行函数到指针的转换).
另一种方法是impl用衰减来实例化T,例如new impl< typename std::decay<T>::type >(ptr)