gpt4 book ai didi

编译器在 Windows 上找不到 GCD 头文件

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:38 24 4
gpt4 key购买 nike

我需要在我的程序中使用 Grand Central Dispatch,但我不知道如何在 Windows 上使用它。

我得到的错误是

error: dispatch/dispatch.h: No such file or directory

#include <dispatch/dispatch.h>

int main (int argc, const char * argv[])
{

dispatch_group_t group;
dispatch_queue_t queue; // thread queues to use

group = dispatch_group_create();

queue= dispatch_queue_create("queue", NULL);

dispatch_sync(queue, ^{
puts("Dispatch test");
} );


dispatch_group_wait(group, DISPATCH_TIME_FOREVER);


dispatch_main();

return 0;
}

最佳答案

您可以在 Windows 上使用 GCD API (libdispatch)。但是,对于 Blocks,需要 Blocks 支持的编译器(带有 Apple 补丁的 gcc 或 LLVM clang)。

关于编译器在 Windows 上找不到 GCD 头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7542840/

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