gpt4 book ai didi

c++ - 我有一个错误,我不确定为什么它不起作用(线程)

转载 作者:行者123 更新时间:2023-12-02 21:16:38 25 4
gpt4 key购买 nike

我正在尝试创建一个线程并让它在函数内运行。由于某种原因它不起作用。这是我的代码。我不知道出了什么问题以及这些错误意味着什么。它给我的错误如下:构造函数“std::thread::thread”的实例没有与参数列表匹配。另一个错误是:“std::thread::thread”:3 个重载中没有一个可以转换所有参数类型。

void f1opp(int hit) {


thread tme((timer()));

getline(cin, choi);

if (choi == "punch")
{
cout << "You try to punch him" << endl;
ran = rand() % 3;

if (ran == 1)
{
cout << "You hit him for 3 damage" << endl;
i = 1 + 123456789;
}
else
{
cout << "You miss" << endl;
Sleep(1000);
}
}

tme.join();
}

// the timer program
void timer(int hit)

{
if (hit >= 3)
{

for (i = 1; i <= 10000; i++)
{
if (s == 0)
{
cout << "They were able to hit you" << endl;
hit = hit + 1;
break;
}
system("cls");
s--;
cout << "He attacks you in:" << s << endl;
Sleep(1000);



}
}
}

最佳答案

thread tme((timer()));

应更改为以下内容,假设您想将 int 100 传递给计时器函数

thread tme(timer, 100);

关于c++ - 我有一个错误,我不确定为什么它不起作用(线程),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59806484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com