我有一个类,让我们Foo
用几种方法来调用它:
template<typename T>
class Foo {
public:
Foo() { /* ... */ }
bool do_something() { /* ... */ }
// This method should be callable only if:
// std::is_floating_point<T>::value == true
void bar() {
// Do stuff that is impossible with integer
}
};
我希望能够同时构造Foo<double>
和但是当类型 T 不是浮点类型时Foo<int>
我不想允许调用。bar()
我还希望在编译时而不是在运行时生成错误。所以,我想要的是:
Foo<double> a;
a.bar(); // OK
Foo<int> b;
bool res = b.do_something(); // OK
b.bar(); // WRONG: compile error
我尝试了很多事情(使用类似this或this oneenable_if
的帖子),但我不能再使用. 例如:int
Foo
typename std::enable_if<std::is_floating_point<T>::value>::type
bar() { /* ... */ }
main.cpp:112:28: required from here
foo.h:336:5: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’
bar() {
如何限制bar()
对浮点类型的使用,但允许在其他地方使用整数类型?