- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在建筑中,我得到以下错误:
main.obj : error LNK2019: unresolved external symbol ""public: __cdecl Worker::Worker(void)" (??0Worker@@QEAA@XZ)" in function "main".
main.obj : error LNK2019: unresolved external symbol ""public: virtual __cdecl Worker::~Worker(void)" (??1Worker@@UEAA@XZ)" in function "main".
#include <iostream>
#include <thread>
#include "worker.h"
using namespace std;
void pause_thread(int n)
{
std::this_thread::sleep_for (std::chrono::seconds(n));
std::cout << "pause of " << n << " seconds ended\n";
}
int main()
{
std::cout << "Spawning and detaching 3 threads...\n";
std::thread (pause_thread,1).detach();
std::thread (pause_thread,2).detach();
std::thread (pause_thread,3).detach();
std::cout << "Done spawning threads.\n";
std::cout << "(the main thread will now pause for 5 seconds)\n";
// give the detached threads time to finish (but not guaranteed!):
pause_thread(5);
Worker w;
return 0;
}
worker.h
#ifndef WORKER_H
#define WORKER_H
#include "jobqueue.h"
#include "job.h"
#include <mutex>
#include <thread>
using namespace std;
class Worker
{
private:
JobQueue jobs;
mutex mu;
thread & workerThread;
bool stop;
void work();
public:
Worker();
virtual ~Worker();
void addJob(Job*);
int getJobCount();
};
#endif // WORKER_H
worker.cpp
#include "worker.h"
Worker::Worker(): workerThread(work), stop(false)
{
}
Worker::~Worker()
{
workerThread.join();
}
void Worker::work(){
while (!stop) {
unique_lock<mutex> lock(mu, defer_lock);
lock.lock();
Job* job = jobs.getNextJob();
lock.unlock();
job->run();
delete job;
}
}
void Worker::addJob(Job* job){
jobs.append(job);
}
int Worker::getJobCount(){
unique_lock<mutex> lock(mu);
return jobs.size();
}
project.pro
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += main.cpp \
jobqueue.cpp \
worker.cpp
HEADERS += \
jobqueue.h \
worker.h \
job.h
删除Project.pro.user可解决(main-)问题,现在再次显示错误
最佳答案
您的代码中有很多错误,正如我建议您在此之前应该学习更多的C++基础知识。
当我在评论中显示错误时,让我仅使用成员函数来回答您的问题:
与Java相对,C++将函数视为一等公民(Java 8改进解决了一些问题,但也没有将函数视为一等公民)。
C++将函数理解为可调用实体的概念:可调用实体是可以被调用的任何东西,即被视为函数。因此,可调用实体可以是:
void f() {}
int main()
{
f(); //Call to f
}
struct foo
{
void f();
};
int main()
{
foo myfoo;
myfoo.f(); //Call to foo::f
}
struct foo
{
static void f();
{
int main()
{
foo::f(); //Call to foo::f
}
struct f
{
void operator()() const
{}
};
int main()
{
f myf;
myf(); //Call to foo
}
std::function
,它是一种类型为擦除的函子,旨在容纳任何类型的可调用实体:#include <functional>
void f() {}
int main()
{
std::function<void()> f_wrapper;
f_wrapper(); //Call to f_wrapper, which is an indirect call to f
}
int main()
{
std::function<void()> lambda = [](){ std::cout << "hello!"; };
}
Hello!
void f() {}
void g( void(*function)() )
{
function(); //Call to the function referenced by the pointer passed as parameter
}
int main()
{
g(f); //Call to g passing f as parameter. Its an indirect call to f. Note that the & is not needed
}
struct foo
{
voif f();
};
typedef void(foo::* pointer_to_f_type)();
int main()
{
pointer_to_f_pointer ptr = &foo::f; //Note that the & is needed, just like in variable pointers
foo myfoo;
(myfoo.*ptr)(); //Call to the foo member function pointed by ptr (foo::f) using myfoo as object
}
std::bind
,该模板允许我们将函数绑定(bind)到某些(或全部)调用参数。std::bind()
返回的对象表示对可调用实体的部分(或完整)调用。 void f( int , int , int ) {}
int main()
{
std::function<void(int,int,int)> f_wrapper = f;
f(1,2,3); //Ok
f_wrapper(1,2,3); //Ok
std::function<void()> f_call = std::bind( f , 1 , 2 , 3 ); //f_call represents a partial call (Complete in this case) fo f
f_call(); //Execute the call
std::function<void(int)> partial_f_call = std::bind( f , std::placeholders::_1 , 2 , 3 );
partial_f_call( 1 ); //Same execution as above
}
std::bind()
允许我们将某些参数绑定(bind)到函数,从而创建一个可调用的实体,std::function
实例完全相同的形式。 那是std::function
以相同的方式存储成员和非成员函数,并以相同的方式使用**: void f();
struct foo
{
void f();
};
int main()
{
std::vector<std::function<void()>> functions;
foo myfoo;
functions.push_back( f );
functions.push_back( std::bind( &foo::f , myfoo ) );
functions.push_back( [](){} );
...
for( const auto& function : functions )
function();
}
template<typename F>
void call_function( const F& function )
{
function(); //function should be any kind of thing which could be called, that is, a callable entity
}
std::thread
构造函数执行。它只需要任何种类的可调用实体,一组调用参数,启动一个新线程,
join()
或
detach()
)上调用可调用实体。其实现可能类似于:
template<typename F , typename... ARGS>
thread::thread( F&& function , ARGS&&... args )
{
_thread = create_thread();
_function = std::bind( std::forward<F>( function ) , std::forward<ARGS>( args )... );
}
void thread::detach()
{
detach_thread( _thread );
_function();
}
void thread::join()
{
join_thread( _thread );
_function();
}
std::bind()
创建可调用实体关于c++ - 未解析的外部符号(构造函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22414526/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!