|
@@ -1,10 +1,10 @@
|
|
|
# c中基础函数用法
|
|
|
-## `setsockopt`函数
|
|
|
+## `setsockopt` 设置套接字选项
|
|
|
第二个参数level是被设置的选项的级别,如果想要在套接字级别上设置选项,就必须把level设置为 SOL_SOCKET。
|
|
|
```c++
|
|
|
int setsockopt(int sockfd, int level, int optname, const void *optval, socklen_t optlen);
|
|
|
```
|
|
|
-## `memset` 函数
|
|
|
+## `memset` 设置对象内存
|
|
|
> void *memset(void *s, int ch, size_t n);
|
|
|
### 作用
|
|
|
> En
|
|
@@ -48,7 +48,7 @@ int snprintf( char *buffer, size_t buf_size, const char *format, ... );//可变
|
|
|
- %x: 十六进制整数
|
|
|
|
|
|
|
|
|
-## `memcpy` 函数
|
|
|
+## `memcpy` 拷贝对象内存
|
|
|
### 作用
|
|
|
> En
|
|
|
> Copies count bytes from the object pointed to by src to the object pointed to by dest.
|
|
@@ -87,3 +87,56 @@ void *memcpy(void *dest, const void *src, size_t count)
|
|
|
return dest;
|
|
|
}
|
|
|
```
|
|
|
+## `fread` 读取文件
|
|
|
+### 作用
|
|
|
+> En
|
|
|
+> Reads an array of count elements,
|
|
|
+> each one with a size of size bytes,
|
|
|
+> from the stream and stores them in the block of memory specified by ptr.
|
|
|
+> Ch
|
|
|
+> 从流中读取一个大小为size字节的count个元素的数组,并将它们存储在ptr指定的内存块中。
|
|
|
+
|
|
|
+### 语法
|
|
|
+```c++
|
|
|
+size_t fread(void *ptr, size_t size, size_t count, FILE *stream);
|
|
|
+```
|
|
|
+
|
|
|
+### 参数
|
|
|
+- ptr: 指向要读取的元素存储位置的指针
|
|
|
+- size: 每个元素的大小(以字节为单位)
|
|
|
+- count: 元素的个数
|
|
|
+- stream: 指向 FILE 对象的指针,该 FILE 对象指定了一个输入流
|
|
|
+
|
|
|
+## `fseek` 移动文件指针
|
|
|
+### 作用
|
|
|
+> En
|
|
|
+> Sets the position indicator associated with the stream to a new position.
|
|
|
+> The end-of-file internal indicator of the stream is cleared after a successful call to this function,
|
|
|
+> and all effects from previous calls to ungetc on this stream are dropped.
|
|
|
+> Ch
|
|
|
+> 将与流关联的位置指示器设置为新位置。
|
|
|
+> 成功调用此函数后,流的文件结束内部指示器将被清除,并且此流上先前调用ungetc的所有效果都将被丢弃。
|
|
|
+
|
|
|
+### 语法
|
|
|
+```c++
|
|
|
+int fseek(FILE *stream, long int offset, int whence);
|
|
|
+```
|
|
|
+
|
|
|
+### 参数
|
|
|
+- stream: 指向 FILE 对象的指针,该 FILE 对象标识了流
|
|
|
+- offset: 新的文件位置,以字节为单位(long int 类型)
|
|
|
+- whence: 指定从哪里开始偏移
|
|
|
+ - SEEK_SET: 文件开头
|
|
|
+ - SEEK_CUR: 当前位置
|
|
|
+ - SEEK_END: 文件结尾
|
|
|
+ - 也可以使用数字 0, 1, 2 来代替 SEEK_SET, SEEK_CUR, SEEK_END
|
|
|
+ - SEEK_SET: 0
|
|
|
+ - SEEK_CUR: 1
|
|
|
+ - SEEK_END: 2
|
|
|
+- 返回值: 成功返回0,失败返回非0值
|
|
|
+
|
|
|
+### 注意事项
|
|
|
+- 该函数会清除之前调用`ungetc`函数的效果
|
|
|
+- 该函数会清除之前调用`fseek`函数的效果
|
|
|
+- 该函数会清除之前调用`fsetpos`函数的效果
|
|
|
+- 该函数会清除之前调用`rewind`函数的效果
|