以下代码使用 VC2013 中的 Debug\Win32 和 Debug\ x64设置进行编译,但是当我使用 Debug\ x64时,我得到以下IntelliSense 错误:
IntelliSense: no operator "=" matches these operands
operand types are: std::future<bar<int>> = std::future<bar<int> (&)(bar<int> v)>
错误是指 Header.cpp 中的此函数:
bar<int> test::call(bar<int> v)
{
std::future<bar<int>> ret;
ret = std::async(std::launch::async, &test::exec, this, v);
return ret.get();
}
为什么 std::async 在使用 x64 时返回不同的东西?
返回值win32:
std::future<bar<int>>
返回值 x64:
std::future<bar<int> (&)(bar<int>
我怎样才能为 x64 解决这个问题?
我的代码:
头文件.h
#pragma once
#include <future>
#include <iostream>
using namespace std;
template <typename T>
class bar
{
public:
bar()
{
state = 9;
}
void dec(){ state--; }
T show()
{
return state;
}
private:
T state;
};
class test{
public:
test(int a);
public:
bar<int> call(bar<int> v);
private:
bar<int> exec(bar<int> v);
private:
int value;
};
头文件.cpp
#include "Header.h"
using namespace std;
test::test(int a)
{
value = a;
}
bar<int> test::call(bar<int> v)
{
std::future<bar<int>> ret;
ret = std::async(std::launch::async, &test::exec, this, v);
return ret.get();
}
bar<int> test::exec(bar<int> v)
{
v.dec();
v.dec();
return v;
}
源.cpp
#include <future>
#include <iostream>
#include "Header.h"
using namespace std;
int main()
{
test object(4);
bar<int> foo;
bar<int> other = object.call(foo);
std::cout << other.show();
getchar();
}
编辑: 我不想使用自动,因为自动在其他情况下不起作用(例如创建期货向量然后推回期货)
这个错误不是编译器错误,代码编译和执行完美==>我不能发布编译器错误,因为没有编译器错误。我只想摆脱 VC IntelliSense 错误
使用 std::move() 并不能解决问题,我仍然得到一个 IntelliSense 错误:(代码在使用和不使用 std::move 的情况下都能完美编译和执行)
IntelliSense: no operator "=" matches these operands
operand types are: std::future<bar<int>> = std::future<bar<int> (&)(bar<int> v)>