C++ 第3页
C++
每日C++(25年):11月24日 – 11月30日-C佳家

每日C++(25年):11月24日 – 11月30日

11月24日:mutex:std::mutex::lock11月25日:mutex:std::mutex::try_lock11月26日:mutex:std::mutex::unlock11月27日:mutex:std::timed_mutex::lock11月28日:mutex:std::timed_mutex::t...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报7天前
04814
每日C++(25年):11月17日 – 11月23日-C佳家

每日C++(25年):11月17日 – 11月23日

11月17日:atomic:std::atomic::wait11月18日:atomic:std::atomic::fetch_add11月19日:atomic:std::atomic::fetch_sub11月20日:atomic:std::atomic::fetch_and11月21日:atomic:std::at...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报14天前
0589
Whisper.cpp:VS2022下的语音转文本示例-C佳家

Whisper.cpp:VS2022下的语音转文本示例

克隆项目:使用Git工具,将项目克隆到本地:git clone https://github.com/ggml-org/whisper.cpp.git构建项目:构建说明构建可以分为CPU版本和GPU版本,即一个通过CPU的算力来为模型提供服务,...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报9天前
04312
Qt:“QtRunWork”任务返回了 false,但未记录错误。-C佳家

Qt:“QtRunWork”任务返回了 false,但未记录错误。

相关信息:错误信息:MSB4181 “QtRunWork”任务返回了 false,但未记录错误。IDE:VS2022环境相关:Qt6,C++14解决方案:方案一如果 Q_OBJECT 宏未正确处理,通常会出现类似的错误。要使用信...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报26天前
02815
每日C++(25年):11月10日 – 11月16日-C佳家

每日C++(25年):11月10日 – 11月16日

11月10日:thread:std::jthread::get_stop_token11月11日:thread:std::jthread::request_stop11月12日:thread:std::this_thread::yield11月13日:thread:std::this_thread::get_id11月14...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报21天前
0636
每日C++(25年):11月3日 – 11月9日-C佳家

每日C++(25年):11月3日 – 11月9日

11月3日:thread:std::jthread::joinable11月4日:thread:std::jthread::get_id11月5日:thread:std::jthread::native_handle11月6日:thread:std::jthread::hardware_concurrency11月7日:...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报28天前
0457
每日C++(25年):7月14日 – 7月20日-C佳家

每日C++(25年):7月14日 – 7月20日

7月14日:string:std::string::assign7月15日:string:std::string::ends_with7月16日:string:std::string::at7月17日:string:std::string::remove_suffix7月18日:string:std::string::...
Ciallo~的头像-C佳家高级会员Ciallo~4个月前
0599
每日C++(25年):11月合集-C佳家

每日C++(25年):11月合集

11月1日:thread:std::thread::detach11月2日:thread:std::thread::swap11月3日:thread:std::jthread::joinable11月4日:thread:std::jthread::get_id11月5日:thread:std::jthread::nat...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报20天前
0409
C++:并发支持库:thread-atomic-mutex-C佳家

C++:并发支持库:thread-atomic-mutex

函数名站内文章/帖子备注std::thread::joinablethread:std::thread::joinable——————std::thread::get_idthread:std::thread::get_id——————std::thread::native_handlethread:std...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报12小时前
01435
每日C++(25年):10月27日 – 11月2日-C佳家

每日C++(25年):10月27日 – 11月2日

10月27日:thread:std::thread::joinable10月28日:thread:std::thread::get_id10月29日:thread:std::thread::native_handle10月30日:thread:std::thread::hardware_concurrency10月31日...
Ciallo~的头像-C佳家高级会员Ciallo~35天前
0406
每日C++(25年):10月20日 – 10月26日-C佳家

每日C++(25年):10月20日 – 10月26日

10月20日:system_error:std::error_category10月21日:system_error:std::generic_category10月22日:system_error:std::system_category10月23日:system_error:std::error_condition10月...
Ciallo~的头像-C佳家高级会员Ciallo~1个月前
05315
VS2022:编译项目时卡住/内存一直上涨问题解决方案-C佳家

VS2022:编译项目时卡住/内存一直上涨问题解决方案

问题描述:在VS2022中,编译项目会出现窗口卡死,打开文件管理器时,发现内存在持续增加。解决方案:方案1:原因可能是内存不足,在内存足够的情况下,单独编译某个文件的内容,看是否能过,如...