C++线程中,没有重载函数接受 X 参数

C++ thread no overloaded function takes X arguments

本文关键字:函数 参数 重载 线程 C++      更新时间:2023-10-16

我在程序中启动线程时遇到问题。我有一个类,看起来像这样:

class quicksort {
private:
// Array parameters
int length;
// Actual sorting functions
template <typename T>
void _sort(T* data, int, int);
template <typename T>
int _partition(T* data, int, int);
template <typename T>
void _swap(T* data, int, int);
void test_partition(int* data, int length);
public:
// Constructors
quicksort() {}
// Sorting functions
template <typename T>
void sort(T* data, int len);
void test();
};

_sort()方法如下所示:

template <typename T>
void quicksort::_sort(T* data, int p, int r) {
if (p < r) {
auto q = _partition(data, p, r);
std::thread lower(&quicksort::_sort, this, data, p, q - 1);
std::thread upper(&quicksort::_sort, this, data, q + 1, r);
lower.join();
upper.join();
}
}

当我编译它时,我收到此错误:

C:UsersFrynioDropboxStudiaZSSKProjektquicksortinclude/quicksort.hpp(55): error C2661: 'std::thread::thread': no overloaded function takes 5 arguments
C:UsersFrynioDropboxStudiaZSSKProjektquicksortinclude/quicksort.hpp(41): note: see reference to function template instantiation 'void quicksort::_sort<T>(T *,int,int)' being compiled
with
[
T=int
]
../src/main.cpp(8): note: see reference to function template instantiation 'void quicksort::sort<int>(T *,int)' being compiled
with
[
T=int
]
C:UsersFrynioDropboxStudiaZSSKProjektquicksortinclude/quicksort.hpp(56): error C2661: 'std::thread::thread': no overloaded function takes 5 arguments

55 和 56 是我开始线程的行。我似乎不明白我做错了什么。我认为参数传递是可以的,所以我认为问题可能是,dataT类型,这是一个模板方法。是这样吗?如果是,有没有办法解决它?

我想你的意思是写(用<T>(

std::thread lower(&quicksort::_sort<T>, this, data, p, q - 1);
std::thread upper(&quicksort::_sort<T>, this, data, q + 1, r);

否则,编译器将如何推断要传递给std::thread构造函数的哪个_sort实例化?事实上,当我使用 clang 7.0 编译您的代码时,我收到以下附加错误:

thread:118:7: note: candidate template ignored: couldn't infer template argument '_Callable'
thread(_Callable&& __f, _Args&&... __args)
^

因此,这表明它无法确定&quicksort::sort的类型。