QtConcurrent-BlockingMapped-Member-Function-of-iterated-objects: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
This demonstrates how to call a member function on each item in the container and get a collection of the return values.<br />
This demonstrates how to call a member function on each item in the container and get a collection of the return values.<br /><code><br />#include &lt;QtConcurrentMap&amp;gt;<br />#include &lt;QVector&amp;gt;
 
#include &lt;iostream&amp;gt;
 
class MyClass<br />{<br />public:<br /> float Test() const // Note, this function MUST be const!<br /> {<br /> return 1.0f;<br /> }<br />};
 
int main()<br />{<br /> QVector&amp;lt;MyClass&amp;gt; v;<br /> MyClass a;<br /> v.push_back(a);
 
QVector&amp;lt;float&amp;gt; result = QtConcurrent::blockingMapped&amp;lt;QVector&amp;lt;float&amp;gt; &gt;(v.begin(), v.end(), &amp;MyClass::Test);
 
return 0;<br />}

Revision as of 11:11, 24 February 2015

This demonstrates how to call a member function on each item in the container and get a collection of the return values.

#include <QtConcurrentMap&gt;
#include <QVector&gt;

  1. include <iostream&gt;

class MyClass
{
public:
float Test() const // Note, this function MUST be const!
{
return 1.0f;
}
};

int main()
{
QVector&lt;MyClass&gt; v;
MyClass a;
v.push_back(a);

QVector&lt;float&gt; result = QtConcurrent::blockingMapped&lt;QVector&lt;float&gt; >(v.begin(), v.end(), &MyClass::Test);

return 0;
}