read(unsigned char *buf,int num); read()从文件中读取 num 个字符到 buf 指向的缓存中 write(const unsigned char *buf,int num); 而write() 从buf 指向的缓存写 num 个字符到文件中,值得注意的是缓存的类型是 unsigned char *,有时可能需要类型转换 第一个参数 是缓存 buf指向的内存 可以是数组,也可...