- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个类 A,它有一个模板参数 T。有些用例中类 T 提供函数 func1(),有些用例中 T 不提供它。A 中的函数 f() 应该调用 func1(),前提是它存在。我认为这应该可以通过 boost mpl 实现,但我不知道如何实现。这里有一些伪代码:
template<class T>
class A
{
void f(T param)
{
if(T::func1 is an existing function)
param.func1();
}
};
如果是 else-case 会更好:
template<class T>
class A
{
void f(T param)
{
if(T::func1 is an existing function)
param.func1();
else
cout << "func1 doesn't exist" << endl;
}
};
最佳答案
Boost.MPL 不处理这个问题,因为它严格针对 TMP,您不能调用 TMP 中的成员。 Boost.Fusion 和 Boost.TypeTraits 也没有任何东西;我以为其中一个会,但显然我记错了。
Here和 here是关于如何在 C++03 中编写特征来检测成员的一些解决方案。一旦你有了这样的特征(我称之为 has_func1_member
),你就可以将它用于 SFINAE:
template<typename T>
typename boost::enable_if<has_func1_member<T> >::type
maybe_call(T& t)
{ t.func1(); }
template<typename T>
typename boost::disable_if<has_func1_member<T> >::type
maybe_call(T&)
{
// handle missing member case
}
// your example code would then do:
maybe_call(param);
请注意,使用 C++11,一开始就更容易编写特征,尽管它仍然有些神秘。
关于c++ - boost MPL : Call a (member) function only if it exists,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7686753/
下面的代码再现了一个我真的不理解 boost MPL 库的行为: #include #include #include using namespace boost; int main() {
我正在尝试使用 boost.mpl 编写一个小型元程序,该程序使用两个 channel 映射将“命名 channel ”与音频格式相匹配。 名称也是一个整数(枚举)。我试图在运行时实现的一个简单示例可
我正在尝试在 for_each 中使用 mpl_list #include #include #include #include #include #include #include #
我正在尝试对 mpl::string 应用转换,但无法对其进行编译。我正在使用 MS VC++2010 和 Boost 1.43.0。代码: #include #include #include
我正在尝试运行几年前编写的代码,该代码使用 matplotlib 中的 mpl。以前运行得很好,但现在突然抛出错误: from matplotlib import mpl ImportError: c
Boost MPL 文档指出 boost::map::equal "如果两个序列 Seq1 和 Seq2比较 _element_ _element_ 时是相同的。 但似乎没有检查关联序列映射是否相等元
假设我有一个 boost::mpl::vector “myvec”,例如这样定义: using myvec = boost::mpl::vector; 现在我想定义另一种类型 myvecex,它将每个
下面的代码尝试测试 boost::mpl::or_ 和 boost::mpl::and_ 的短路行为: #include #include #include #include #include
假设我有这些类型: template class Storage > struct AbstractFactoryUnit { virtual ~AbstractFactoryUnit()
我有一个类型列表定义为: typedef boost::mpl::list OriginalList; 我想创建不包含任何水果的第二个列表,即从第一个列表形成的结果列表将包含单一类型的 Brick。
我有以下内容: class Message { public: bool process() { return doProcess(); } protected
我试图在编译时使用 boost-mpl 连接字符串,但从 gcc 中收到错误。这是示例 - using namespace boost; using namespace std; template s
天哪,在使用 mpl 库时,弄清楚语法是一个碰运气的经历 (previous question)。比较两个 mpl 迭代器的正确语法是什么 - 即 it != v.end() 测试? template
我目前正致力于在我的应用程序中实现“捐赠”选项,并决定使用 PayPal(请参阅:Donate via in-app billing) 阅读文档等后,决定使用 PayPal 移动支付库 (MPL)。一
我想使用编译时 (MPL) for_each 检查给定的输入变量是否在 MPL 数组中,并再次从 MPL 数组中获取和获取输出变量。我正在尝试使用具有 2 个参数的函数对象,即 MPL 类型和输入。
我知道以下代码不起作用,因为 i 是运行时参数而不是编译时参数。但我想知道,是否有办法实现同样的目标。我有一个类列表,我需要调用其中每个类的模板函数。 void GucTable::refreshSe
我正在浏览 tutorial关于生成式编程,我偶然发现了MPL-value idiom: template class A { A(); public: static const A
我有元函数 FibIter。它计算与斐波那契数列中的数字(参数 Iter)对应的斐波那契数。然后我使用 mpl::transform 创建具有从 0 到 N 的斐波那契数列的 mpl::vector。
我试图用一些容器将每个元素包装在 mpl::set 中,例如 std::vector,尽管实际类型并不重要.我该怎么做?基本上我想从这里开始 using mySet = mpl::set; 对此 us
我有一个像这样的 boost::mpl 序列: typedef boost::mpl::vector TTypes; 我有一个特定用途的容器类,我想从我的 dll 中导出它: template cla
我是一名优秀的程序员,十分优秀!