Advertisement
Lauda

Untitled

Mar 6th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2. #include <thread>
  3. #include <future>
  4.  
  5. using namespace std;
  6.  
  7. int sum(int a, int b)
  8. {
  9.     return a+b;
  10. }
  11.  
  12. int increment(int a)
  13. {
  14.     return ++a;
  15. }
  16.  
  17. int main() {
  18.     int i=5;
  19.     future<int> fd = async(sum,3,5);
  20.     future<int> fi = async(increment, i);
  21.  
  22.     double zbir = fd.get();
  23.     i = fi.get();
  24.  
  25.     cout << "Zbir je: " << zbir  << endl;
  26.     cout << "i=" << i << endl;
  27.  
  28.  
  29.     return 0;
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement