bind_mf2_test.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 163 行

CPP
163
字号
#include <boost/config.hpp>#if defined(BOOST_MSVC)#pragma warning(disable: 4786)  // identifier truncated in debug info#pragma warning(disable: 4710)  // function not inlined#pragma warning(disable: 4711)  // function selected for automatic inline expansion#pragma warning(disable: 4514)  // unreferenced inline removed#endif////  bind_mf2_test.cpp - test for member functions w/ the type<> syntax////  Copyright (c) 2005, 2008 Peter Dimov//// Distributed under the Boost Software License, Version 1.0. (See// accompanying file LICENSE_1_0.txt or copy at// http://www.boost.org/LICENSE_1_0.txt)//#include <boost/bind.hpp>#if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)#pragma warning(push, 3)#endif#include <iostream>#if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)#pragma warning(pop)#endif#include <boost/detail/lightweight_test.hpp>struct X{    mutable unsigned int hash;    X(): hash(0) {}    int f0() { f1(17); return 0; }    int g0() const { g1(17); return 0; }    int f1(int a1) { hash = (hash * 17041 + a1) % 32768; return 0; }    int g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; }    int f2(int a1, int a2) { f1(a1); f1(a2); return 0; }    int g2(int a1, int a2) const { g1(a1); g1(a2); return 0; }    int f3(int a1, int a2, int a3) { f2(a1, a2); f1(a3); return 0; }    int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; }    int f4(int a1, int a2, int a3, int a4) { f3(a1, a2, a3); f1(a4); return 0; }    int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; }    int f5(int a1, int a2, int a3, int a4, int a5) { f4(a1, a2, a3, a4); f1(a5); return 0; }    int g5(int a1, int a2, int a3, int a4, int a5) const { g4(a1, a2, a3, a4); g1(a5); return 0; }    int f6(int a1, int a2, int a3, int a4, int a5, int a6) { f5(a1, a2, a3, a4, a5); f1(a6); return 0; }    int g6(int a1, int a2, int a3, int a4, int a5, int a6) const { g5(a1, a2, a3, a4, a5); g1(a6); return 0; }    int f7(int a1, int a2, int a3, int a4, int a5, int a6, int a7) { f6(a1, a2, a3, a4, a5, a6); f1(a7); return 0; }    int g7(int a1, int a2, int a3, int a4, int a5, int a6, int a7) const { g6(a1, a2, a3, a4, a5, a6); g1(a7); return 0; }    int f8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { f7(a1, a2, a3, a4, a5, a6, a7); f1(a8); return 0; }    int g8(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) const { g7(a1, a2, a3, a4, a5, a6, a7); g1(a8); return 0; }};void member_function_test(){    using namespace boost;    X x;    // 0    bind( type<void>(), &X::f0, &x )();    bind( type<void>(), &X::f0, ref(x) )();    bind( type<void>(), &X::g0, &x )();    bind( type<void>(), &X::g0, x )();    bind( type<void>(), &X::g0, ref(x) )();    // 1    bind( type<void>(), &X::f1, &x, 1 )();    bind( type<void>(), &X::f1, ref(x), 1 )();    bind( type<void>(), &X::g1, &x, 1 )();    bind( type<void>(), &X::g1, x, 1 )();    bind( type<void>(), &X::g1, ref(x), 1 )();    // 2    bind( type<void>(), &X::f2, &x, 1, 2 )();    bind( type<void>(), &X::f2, ref(x), 1, 2 )();    bind( type<void>(), &X::g2, &x, 1, 2 )();    bind( type<void>(), &X::g2, x, 1, 2 )();    bind( type<void>(), &X::g2, ref(x), 1, 2 )();    // 3    bind( type<void>(), &X::f3, &x, 1, 2, 3 )();    bind( type<void>(), &X::f3, ref(x), 1, 2, 3 )();    bind( type<void>(), &X::g3, &x, 1, 2, 3 )();    bind( type<void>(), &X::g3, x, 1, 2, 3 )();    bind( type<void>(), &X::g3, ref(x), 1, 2, 3 )();    // 4    bind( type<void>(), &X::f4, &x, 1, 2, 3, 4 )();    bind( type<void>(), &X::f4, ref(x), 1, 2, 3, 4 )();    bind( type<void>(), &X::g4, &x, 1, 2, 3, 4 )();    bind( type<void>(), &X::g4, x, 1, 2, 3, 4 )();    bind( type<void>(), &X::g4, ref(x), 1, 2, 3, 4 )();    // 5    bind( type<void>(), &X::f5, &x, 1, 2, 3, 4, 5 )();    bind( type<void>(), &X::f5, ref(x), 1, 2, 3, 4, 5 )();    bind( type<void>(), &X::g5, &x, 1, 2, 3, 4, 5 )();    bind( type<void>(), &X::g5, x, 1, 2, 3, 4, 5 )();    bind( type<void>(), &X::g5, ref(x), 1, 2, 3, 4, 5 )();    // 6    bind( type<void>(), &X::f6, &x, 1, 2, 3, 4, 5, 6 )();    bind( type<void>(), &X::f6, ref(x), 1, 2, 3, 4, 5, 6 )();    bind( type<void>(), &X::g6, &x, 1, 2, 3, 4, 5, 6 )();    bind( type<void>(), &X::g6, x, 1, 2, 3, 4, 5, 6 )();    bind( type<void>(), &X::g6, ref(x), 1, 2, 3, 4, 5, 6 )();    // 7    bind( type<void>(), &X::f7, &x, 1, 2, 3, 4, 5, 6, 7)();    bind( type<void>(), &X::f7, ref(x), 1, 2, 3, 4, 5, 6, 7)();    bind( type<void>(), &X::g7, &x, 1, 2, 3, 4, 5, 6, 7)();    bind( type<void>(), &X::g7, x, 1, 2, 3, 4, 5, 6, 7)();    bind( type<void>(), &X::g7, ref(x), 1, 2, 3, 4, 5, 6, 7)();    // 8    bind( type<void>(), &X::f8, &x, 1, 2, 3, 4, 5, 6, 7, 8 )();    bind( type<void>(), &X::f8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8 )();    bind( type<void>(), &X::g8, &x, 1, 2, 3, 4, 5, 6, 7, 8 )();    bind( type<void>(), &X::g8, x, 1, 2, 3, 4, 5, 6, 7, 8 )();    bind( type<void>(), &X::g8, ref(x), 1, 2, 3, 4, 5, 6, 7, 8 )();    BOOST_TEST( x.hash == 23558 );}int main(){    member_function_test();    return boost::report_errors();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?