相关文章
【C++对于C语言的扩充】:auto关键字、范围for以及nullptr
文章目录 🚀auto关键字(C11)✈️auto介绍✈️auto的使用细则✈️auto不能使用的场景 🚀范围for(C11)✈️范围for介绍✈️范围for的使用条件 🚀指针空值nullptr(C11) &…
建站知识
2024/11/23 13:32:17
获取文件属性/库Lib
获取文件属性 stat 函数 man 2 stat #include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>int stat(const char *path, struct stat *buf);
功能:获取文件属性
参数: path:文件路径名buf:保存文…
建站知识
2024/11/23 13:32:21
一步迅速了解Spring框架
目录 一,Spring 的基本概念
1,Spring 是什么
2,Spring框架的特点
1,轻量级
2,IOC
3,AOP
4,一站式
5,Spring 体系结构
二,Spring框架的简单 Hello World 的搭建
…
建站知识
2024/11/23 14:31:31