程序设计语言共36篇
程序设计相关语言,如:C语言
C++: <algorithm> 算法相关头文件-津桥芝士站

C++: <algorithm> 算法相关头文件

函数名站内文章/帖子备注std::sample()C++17 : std::sample函数——————               
Ciallo~的头像-津桥芝士站高级会员Ciallo~18小时前
0529
每日C++(25年):4月14日 - 4月20日-津桥芝士站

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

4月14日:C++17新特性解析:MSVC编译器中的结构化绑定4月15日:C++11新特性解析:auto类型推导4月16日:C++17新特性详解:constexpr if4月17日:C++11新特性解析:decltype类型推导4月18日:C++...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
04411
Ubuntu Linux下配置C/C++环境-津桥芝士站

Ubuntu Linux下配置C/C++环境

环境操作系统:ubuntu-22.04.4安装1. 更新软件包列表,检查可用的软件包更新 sudo apt update2.  安装编译软件所必需的元包 build-essential。sudo apt install build-essential它们包括 GNU...
Ciallo~的头像-津桥芝士站高级会员Ciallo~32天前
0368
WindowsAPI-控件:Static-津桥芝士站

WindowsAPI-控件:Static

使用WindowsAPI,创建一个static控件:#include <windows.h> #include <CommCtrl.h> #pragma comment(lib, 'comctl32.lib') // 窗口过程函数 LRESULT CALLBACK WindowProc(HWND hwn...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
03611
WindowsAPI-控件:SysTabControl32-津桥芝士站

WindowsAPI-控件:SysTabControl32

使用WindowsAPI,创建SysTabControl32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') HINSTANCE hInst; HWND hwndTab; // 标签控件句柄 ...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0407
WindowsAPI-控件:RichEdit-津桥芝士站

WindowsAPI-控件:RichEdit

使用WindowsAPI,创建RichEdit:#include <windows.h> #include <commctrl.h> #include <richedit.h> #pragma comment(lib, 'comctl32.lib') //#pragma comment(lib, 'Msftedi...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
05115
WindowsAPI-控件:ProgressBar-津桥芝士站

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的头像-津桥芝士站高级会员用户8040432036天前
03815
每日C++(25年):4月21日 - 4月27日-津桥芝士站

每日C++(25年):4月21日 – 4月27日

4月21日:C++11新特性解析:alignas 和 alignof 关键字:掌控内存对齐的利器4月22日:C++14 新特性解析:自定义字面量(User-defined Literals)4月23日:C++11 新特性介绍:范围 for 循环(Ran...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
0487
WindowsAPI-控件:ListView(SysListView32)-津桥芝士站

WindowsAPI-控件:ListView(SysListView32)

使用WindowsAPI,创建一个ListView控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_LISTVIEW 101 LRESULT CALLBACK WindowPro...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
02612
每日C++(25年):5月合集-津桥芝士站

每日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~的头像-津桥芝士站高级会员Ciallo~7天前
05910
Windows配置C++ 17/20-津桥芝士站

Windows配置C++ 17/20

1点击 MSYS2 (百度网盘)下载,或者是去到 MSYS2官网下载,并完成安装。2在安装路径下找到:msys2.exe,并打开。接着粘贴:pacman -Syu --disable-download-timeout提示输入的时候输入 Y 或者 y...
Ciallo~的头像-津桥芝士站高级会员Ciallo~36天前
0369
程序设计天梯赛题解-20分题 (C/C++)-津桥芝士站

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

L1-002 打印沙漏L1-006 连续因子L1-009 N个数求和L1-011 A-BL1-015 跟奥巴马一起画方块L1-016 查验身份证L1-020 帅到没朋友L1-023 输出GPLTL1-027 出租L1-032 Left-padL1-034 点赞L1-039 古风排...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13天前
05211