20

我发现自己在写作

for(int i=0;i<myvec.size();i++)
   myvec[i]->DoWhatever(param);

很多,我想把它压缩成一个foreach声明,但我不确定如何param在不冗长的情况下进入那里。我也有类似的东西

for(int i=0;i<myvec.size();i++)
   if(myvec[i]->IsOK())
      myvec[i]->DoWhatever(param);

我也想重写那个人。有什么想法吗?

哦,还有,由于种种原因,我不想用boost。

4

6 回答 6

15
#include <vector>
#include <algorithm>
#include <functional>

class X
{
    public:
        void doWhat(int x) {}
        bool IsOK() const {return true;}
};
class CallWhatIfOk
{
    public:
        CallWhatIfOk(int p): param(p) {}

        void operator()(X& x) const
        {   if (x.IsOK())    {x.doWhat(param);}}
    private:
        int param;
};

int main()
{
    std::vector<X>      myVec;

    std::for_each(  myVec.begin(),
                    myVec.end(),
                    std::bind2nd(std::mem_fun_ref(&X::doWhat),4)
                 );


    std::for_each(  myVec.begin(),
                    myVec.end(),
                    CallWhatIfOk(4)
                 );
}
于 2009-01-24T19:05:47.837 回答
6

哦,还有,由于种种原因,我不想用boost。

有效的决定,但很可能是错误的决定。将 Boost 视为 STL 的扩展。C++ 是一种库驱动的语言。如果你不考虑到这一点,你的代码会质量较差。

虽然std::for_each可以在这里使用,但在 C++0x 之前 C++ 中没有 lambda 表达式使得这变得乏味。我提倡使用Boost.ForEach!它使这容易:

foreach (yourtype x, yourvec)
    if (x.IsOK())
        x.Whatever();
于 2009-01-24T19:06:27.850 回答
4

我首选的解决方案通常是编写一个仿函数来做我需要的事情:

struct doWhatever {
  doWhatever(const Param& p) p(p) {}
  void operator(MyVec v&, Param p) {
    v.DoWhatever(param);
  }

private:
  Param p;
};

然后循环:

std::for_each(myvec.begin(), myvec.end(), doWhatever(param));

根据您有多少变体,这可能有点过于冗长。不过,有很多选项可以内联。boost::lambda 可以让你在调用点构造你需要的函数。boost::bind (或标准库绑定函数)可以让您将参数 param 绑定到函数,因此您不需要每次都将其作为参数提供。

boost::lambda 可能是最简洁灵活的方法。我通常使用普通函子方法,因为语法更容易记住。;)

于 2009-01-24T19:14:13.890 回答
3

好吧,当我们有支持 C++0x lambda 表达式的编译器时,这变得简单且微创:

std::for_each(myvec.begin(),myvec.end(),[&](X& item){
     item->DoWhatever(param);
});

第二个示例可能如下所示:

std::for_each(myvec.begin(),myvec.end(),[&](X& item){   
   if(item->IsOK())      
      myvec[i]->DoWhatever(param);
});
于 2009-02-18T09:18:14.130 回答
3
#include <vector>
#include <algorithm>
#include <boost/bind.hpp>
#include <boost/lambda/if.hpp>
#include <boost/lambda/bind.hpp>


struct A
{
  bool IsOK () { return true; }
  void DoWhatever (int param) {}
};

struct B
{
  bool IsOk (A * a) { return true; }
  void DoWhatever (A * a, int param) {}
};

typedef std::vector<A *> Myvec;

void main()
{
  Myvec myvec;
  int param = 1;
  B b;

  // first challenge using boost::bind (fnct in the same class)
  std::for_each (myvec.begin(), myvec.end(),
    boost::bind (&A::DoWhatever, _1, param));

  // first challenge using boost::bind (fnct in an external class)
  std::for_each (myvec.begin(), myvec.end(),
    boost::bind (&B::DoWhatever, &b, _1, param));

  // second challange using boost::lambda (fnct in the same class)
  std::for_each (myvec.begin(), myvec.end(),
    boost::lambda::if_then(
      boost::lambda::bind (&A::IsOK, boost::lambda::_1), 
      boost::lambda::bind (&A::DoWhatever, boost::lambda::_1, param)
    )
  );

  // second challange using boost::lambda (fnct in an external class)
  std::for_each (myvec.begin(), myvec.end(),
    boost::lambda::if_then(
      boost::lambda::bind (&B::IsOK, &b, boost::lambda::_1), 
      boost::lambda::bind (&B::DoWhatever, &b, boost::lambda::_1, param)
    )
  );

}

您可以通过使用命名空间来简化它...

于 2010-04-13T22:33:58.467 回答
0

如果您使用的是 GCC,您可以定义如下内容:

#define foreach(element, array) \
    for(typeof((array).begin()) element = (array).begin(), __end_##element = (array).end();\
        element != __end_##element;\
        ++element)

然后像这样使用它:

foreach(element, array){
    element->DoSomething(); //or (*element)->DoSomething() if type is already a pointer
}

我在自定义数组上使用它,但它也适用于 std::vector 。

于 2010-06-01T17:27:06.390 回答