C++ 第6页
C++
每日C++(26年):1月19日 – 1月25日-C佳家

每日C++(26年):1月19日 – 1月25日

1月19日:future:std::promise::set_value1月20日:future:std::promise::set_value_at_thread_exit1月21日:future:std::promise::set_exception1月22日:future:std::promise::set_except...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报9天前
04713
Windows:配置C++17/20-C佳家

Windows:配置C++17/20

安装软件点击 MSYS2 (百度网盘)下载,或者是去到 MSYS2官网下载,并完成安装。配置环境下载环境:在安装路径下找到:msys2.exe,并打开。接着粘贴:pacman -Syu --disable-download-timeout提...
Ciallo~的头像-C佳家高级会员Ciallo~4个月前
01389
C++实现socket编程(Windows、Linux)-C佳家

C++实现socket编程(Windows、Linux)

基本概念C++ Socket 编程是实现网络通信的一种方式,利用 Socket 接口,程序可以通过计算机网络进行数据的传输与接收。Socket 是一种用于实现通信的抽象概念,它可看作是连接网络中两个通信端点...
Ciallo~的头像-C佳家高级会员Ciallo~9个月前
04614
Windows:VSCode安装与配置C/C++环境-C佳家

Windows:VSCode安装与配置C/C++环境

VSCode安装:先在官网下载VSCode,如果官网下载很慢,你可以点击下方链接:安装时的安装路径尽可能不要的存在中文,其余没有什么需要注意的配置C/C++环境:首先你需要配置C/C++环境,你可以参考...
Ciallo~的头像-C佳家高级会员Ciallo~6个月前
04213
每日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佳家内容更新/站内事务/违规举报3个月前
0419
每日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佳家内容更新/站内事务/违规举报3个月前
0477
WindowsAPI-控件:ProgressBar-C佳家

WindowsAPI-控件:ProgressBar

使用WindowsAPI,创建ProgressBar控件:#include <windows.h> #include <commctrl.h> #define TIMER_ID 1 #pragma comment(lib, 'comctl32.lib') HWND hwndProgressBar; int c = 0;...
用户80404320的头像-C佳家高级会员用户804043209个月前
04815
每日C++(25年):12月8日 – 12月14日-C佳家

每日C++(25年):12月8日 – 12月14日

12月8日:mutex:std::shared_mutex::lock12月9日:mutex:std::shared_mutex::try_lock12月10日:mutex:std::shared_mutex::lock_shared12月11日:mutex:std::shared_mutex::try_lock_shared...
内容更新/站内事务/违规举报的头像-C佳家内容更新/站内事务/违规举报2个月前
0559
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佳家内容更新/站内事务/违规举报4小时前
02805
每日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佳家内容更新/站内事务/违规举报3个月前
0669
每日C++(25年):10月6日 – 10月12日-C佳家

每日C++(25年):10月6日 – 10月12日

10月6日:exception:std::logic_error10月7日:stdexcept:std::invalid_argument10月8日:stdexcept:std::domain_error10月9日:stdexcept:std::length_error10月10日:stdexcept:std::out...
Ciallo~的头像-C佳家高级会员Ciallo~4个月前
0657
WindowsAPI-控件:SysTabControl32-C佳家

WindowsAPI-控件:SysTabControl32

使用WindowsAPI,创建SysTabControl32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') HINSTANCE hInst; HWND hwndTab; // 标签控件句柄 ...
用户80404320的头像-C佳家高级会员用户804043209个月前
0437