【发布时间】:2018-04-03 00:49:57
【问题描述】:
class DirectoryEntry; // forward declaration
template <class T>
struct isPathable { static const bool value = false; };
template<> struct isPathable<char*>
{
static const bool value = true;
};
template<> struct isPathable<const char*>
{
static const bool value = true;
};
template<> struct isPathable<std::string>
{
static const bool value = true;
};
template<> struct isPathable<std::vector<char> >
{
static const bool value = true;
};
template<> struct isPathable<std::list<char> >
{
static const bool value = true;
};
template<> struct isPathable<DirectoryEntry>
{
static const bool value = true;
};
class path
{
private:
std::string m_pathname;
public:
// constructors:
// ------------------------
path() noexcept {}
path(const path &p) : m_pathname(p.m_pathname) {}
template <class Source>
path(Source const &source,
std::enable_if_t<isPathable<std::decay_t<Source>> >* = 0)
{
// do stuff
}
...
};
我收到以下错误消息:
/usr/bin/c++ -I../lib -Wall -Werror -std=c++17 -g -pthread -MD -MT app/CMakeFiles/infinityApp.dir/src/main.cpp.o -MF app/CMakeFiles/infinityApp.dir/src/main.cpp.o.d -o app/CMakeFiles/infinityApp.dir/src/main.cpp.o -c ../app/src/main.cpp
error: type/value mismatch at argument 1 in template parameter list for ‘template<bool _Cond, class _Tp> using enable_if_t = typename std::enable_if::type’
std::enable_if_t<isPathable<std::decay_t<Source>> >* = 0)
^
note: expected a constant of type ‘bool’, got ‘isPathable<typename std::decay<_Tp>::type>’
从错误消息中,我看到 isPathable 部分存在问题,因为它没有传递布尔值,但我不明白原因。问题出在哪里,我应该如何更改我的代码?也许有更好的解决方案来解决这些问题?
【问题讨论】:
-
你不是说...
std::enable_if_t<isPathable<std::decay_t<Source>>::value>? -
是的。谢谢!但是,我似乎不能接受 cmets 作为正确答案?
-
正确,我会稍微正式一点。
标签: c++ constructor std enable-if