首页
AIGC
LLM
C++
CMake
关于我
柳絮飘 - AIGC, LLM大模型以及C++分享网站
学习,让淘汰成为一个借口!
累计撰写
5
篇文章
累计创建
3
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
以下是
杜凌霄
的文章
2025-05-23
登堂入室C++--基础数据类型
本文系统梳理了C++中的基础数据类型,包括void、nullptr_t、布尔、字符、整数与浮点类型,结合底层存储结构和跨平台特性进行深入讲解。通过精确位宽类型(如int32_t)、字符编码(如char8_t)和IEEE 754浮点标准的解析,帮助读者理解各类型在实际开发中的应用与选型策略。适合希望夯实C++基础的开发者阅读。
2025-05-23
16
0
0
cplusplus
2025-05-23
登堂入室C++--简介
本文概述了C++的发展历程、语言特性与典型应用场景,强调其实用主义风格及跨平台优势。同时介绍了CMake构建系统、clang-format格式化工具、gtest单元测试框架及常用库,适合初学者构建完整开发环境。
2025-05-23
12
0
0
cplusplus
2025-05-22
I Don't Really Understand CMake--Introduction
This article introduces the basics of using CMake by walking through the setup of a simple C++ project. It covers creating a CMakeLists.txt file, setting the minimum required CMake version (cmake_minimum_required), defining the project name (project), and using the build commands (cmake for configuration and cmake --build for building). The author emphasizes the benefits of using a separate build directory to keep the source directory clean. The content is concise and beginner-friendly, making it ideal for developers who are new to CMake.
2025-05-22
12
0
0
en-cmake