⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quotient_controlling.cpp

📁 An article on the implementation of a fast C++ delegate with many advanced features.
💻 CPP
字号:
// FD.Delegate library examples

// Copyright Douglas Gregor 2001-2003. Use, modification and
// distribution is subject to 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)

// For more information, see http://www.boost.org

// Copyright (C) 2007 JaeWook Choi
// , modified from Boost.Signals quotient_controlling.cpp

#include <iostream>
#include <boost/signals/signal2.hpp>
#include <fd/delegate/delegate2.hpp>
#include <cassert>

struct print_sum {
  void operator()(int x, int y) const { std::cout << x+y << std::endl; }
};

struct print_product {
  void operator()(int x, int y) const { std::cout << x*y << std::endl; }
};

struct print_difference {
  void operator()(int x, int y) const { std::cout << x-y << std::endl; }
};

struct print_quotient {
  void operator()(int x, int y) const { std::cout << x/-y << std::endl; }
};


int main()
{
  boost::signal2<void, int, int> sig;

  fd::delegate2<void, int, int> dg;

  sig.connect(print_sum());
  sig.connect(print_product());

  dg += print_sum();
  dg += print_product();

  sig(3, 5);

  dg(3, 5);

  boost::signals::connection print_diff_con = sig.connect(print_difference());

  fd::multicast::token print_diff_tok = dg.add(print_difference());

  // sig is still connected to print_diff_con
  assert(print_diff_con.connected());

  // print_diff_tok is still connected to dg
  assert(print_diff_tok.valid());

  sig(5, 3); // prints 8, 15, and 2

  dg(5, 3); // prints 8, 15, and 2

  print_diff_con.disconnect(); // disconnect the print_difference slot

  print_diff_tok.remove(); // remove the print_difference delegate

  sig(5, 3); // now prints 8 and 15, but not the difference

  dg(5, 3);  // now prints 8 and 15, but not the difference

  assert(!print_diff_con.connected()); // not connected any more

  assert(!print_diff_tok.valid()); // not connected any more

  {
    boost::signals::scoped_connection c = sig.connect(print_quotient());
    sig(5, 3); // prints 8, 15, and 1

    fd::multicast::scoped_token t = dg.add(print_quotient());
    dg(5, 3); // prints 8, 15, and 1

  } // c falls out of scope, so sig and print_quotient are disconnected
    // t falls out of scope, so print_quotient is not a member of dg

  sig(5, 3); // prints 8 and 15

  dg(5, 3); // prints 8 and 15

  return 0;
}

⌨️ 快捷键说明

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