applymember.h

来自「Think in C++ 2nd」· C头文件 代码 · 共 41 行

H
41
字号
//: C19:applyMember.h

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// applySequence.h modified to use 

// member function templates



template<class T, template<typename> class Seq>

class SequenceWithApply : public Seq<T*> {

public:

  // 0 arguments, any type of return value:

  template<class R>

  void apply(R (T::*f)()) {

    iterator it = begin();

    while(it != end()) {

      ((*it)->*f)();

      it++;

    }

  }

  // 1 argument, any type of return value:

  template<class R, class A>

  void apply(R(T::*f)(A), A a) {

    iterator it = begin();

    while(it != end()) {

      ((*it)->*f)(a);

      it++;

    }

  }

  // 2 arguments, any type of return value:

  template<class R, class A1, class A2>

  void apply(R(T::*f)(A1, A2), 

    A1 a1, A2 a2) {

    iterator it = begin();

    while(it != end()) {

      ((*it)->*f)(a1, a2);

      it++;

    }

  }

}; ///:~

⌨️ 快捷键说明

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