- 论坛徽章:
- 1
|
大家好,
请教大家一个问题。
1 目的:为了集中相关代码于相关cpp。
2 想法:在使用线程时,想通过new 匿名线程类,并且覆盖类方法。语法该怎么写。代码如下:- void CPartFile::FlushBuffer(bool fromAICHRecoveryDataAvailable)
- {
- m_nLastBufferFlushTime = GetTickCount();
- if (m_BufferedData_list.empty()) {
- return;
- }
- CThreadScheduler::AddTask(new CFlushBufferTask(this){
- void Entry()
- {
- // run some thing here.
- }
-
- void OnExit()
- {
- }
- });
-
- uint32 partCount = GetPartCount();
- // Remember which parts need to be checked at the end of the flush
- std::vector<bool> changedPart(partCount, false);
复制代码 上面写法无法通过编译,请问该怎么写。谢谢。@windoze |
|