UNIX环境高级编程学习之第三章文件IO-文件写操作 [code lang="cpp"]#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <errno.h> int er…
UNIX环境高级编程学习之第三章文件IO-文件写操作 [code lang="cpp"]#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <errno.h> int er…
Makefile 同时编译静态库和动态库 [code lang="cpp"]# XJ通用工具类库编译 # LiXiujie # 20151010 DIR_SRC = ./src DIR_INC = ./include DIR_LIB = ./lib SRC = $(wildcard ${DIR_SRC}/*.cpp) OBJS = $(patsubst %.cpp,${DIR_SRC}/%.o,$(notdir ${SRC})) LocalDate = $(shell date +"%Y%m%d"…
malloc只是申请指定空间的大小,主要是在C语言中会用到,在C++中,特别是在类中使用NEW才是申请一个 [code lang="cpp"]/* * malloc.cpp * 自己管理内存 malloc * Created on: 2015年10月10日 * Author: LiXiujie */ #include <iostream> class A{ public: static A* Construct(int a){ A* pA = (A*)malloc(sizeof(struct A)); …