stat() 函数是 Linux/Unix 系统中用于获取文件信息的一个系统调用。它的完整原型如下: #include <sys/types.h>#include <sys/stat.h>#include <unistd.h>int stat(const char *path, struct stat *buf); 其中各个参数的…
const 1:修饰普通变量,代表只读的意思 const int a=100;//定义了一个只读变量 a 值为 100 以后在程序中,不能再给 a 赋值了 a=200;//错误的,a 只读 2:const 修饰指针 (1)、const char *str 意思是 str 指向的内存的内容不能通过 str 来修改 用来保护 str 指向的内存的内容 …