C++共49篇
C++
WindowsAPI-控件:SysTabControl32-C佳家

WindowsAPI-控件:SysTabControl32

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

WindowsAPI-控件:ListView(SysListView32)

使用WindowsAPI,创建一个ListView控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_LISTVIEW 101 LRESULT CALLBACK WindowPro...
用户80404320的头像-C佳家高级会员用户804043202个月前
02812
Code Server: 配置C/C++环境教程-C佳家

Code Server: 配置C/C++环境教程

安装CodeServer:参考GitHub的安装教程:安装安装插件:你需要安装这五个插件,途中的Chinese插件可以不需要安装,根据个人英语阅读水平安装即可。 接着,创建一个.c的文件和一个CMakeLists.tx...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★20天前
05212
WindowsAPI-控件:SysDateTimePick32-C佳家

WindowsAPI-控件:SysDateTimePick32

使用WindowsAPI,创建SysDateTimePick32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_DATETIMEPICK 101 LRESULT CALLBACK ...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
04214
C++实现socket编程(Windows、Linux)-C佳家

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

基本概念C++ Socket 编程是实现网络通信的一种方式,利用 Socket 接口,程序可以通过计算机网络进行数据的传输与接收。Socket 是一种用于实现通信的抽象概念,它可看作是连接网络中两个通信端点...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
04414
子比主题美化-自助友情链接申请-C佳家

子比主题美化-自助友情链接申请

设置:在服务器上,网站根目录/wp-content/themes/zibll/,在文件夹下创建一个blinks.php文件,添加以下代码:在网站后台 -> 页面 -> 添加页面,发布模板选择自助申请友链,再将页面链接...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★21天前
0287
每日C++(25年):5月合集-C佳家

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

5月1日:C++11 新特性解析:Lambda 表达式(1)5月2日:C++11 新特性解析:std::enable_if 和 SFINAE5月3日:C++11 新特性解析:std::array 和其与传统数组的优缺点5月4日:C++17 新特性解析:s...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
06610
WindowsAPI-控件:MonthCalendar-C佳家

WindowsAPI-控件:MonthCalendar

使用WindowsAPI,创建MonthCalendar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_CALENDAR 101 LRESULT CALLBACK WindowPr...
用户80404320的头像-C佳家高级会员用户804043202个月前
05512
每日C++(25年):7月28日 – 8月3日-C佳家

每日C++(25年):7月28日 – 8月3日

7月28日:iostream:std::clog7月29日:iostream:std::istream::ignore7月30日:iostream:std::istream::getline7月31日:iostream:std::istream::read8月1日:cmath:std::hypot8月2日:cma...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★前天
04313
每日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~(∠・ω< )⌒★15天前
0599
程序设计天梯赛题解-25分题 (C/C++)-C佳家

程序设计天梯赛题解-25分题 (C/C++)

L2-002 链表去重L2-003 月饼L2-004 这是二叉搜索树吗?L2-005 集合相似度L2-006 树的遍历L2-007 家庭房产L2-008 最长对称子串L2-009 抢红包L2-010 排座位L2-011 玩转二叉树L2-012 关于堆的判断...
LICDAK的头像-C佳家高级会员LICDAK2个月前
07511
WindowsAPI-控件:SysPager与ToolbarWindow32-C佳家

WindowsAPI-控件:SysPager与ToolbarWindow32

使用WindowsAPI,创建SysPager和ToolbarWindow32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define WINDOW_CLASS_NAME L'SampleWin...
用户80404320的头像-C佳家高级会员用户804043202个月前
0526