下面以unsigned int value = 0x12345678为例,分别看看在两种字节序下其存储情况,我们可以用unsigned char buf[4]来表示value Big-Endian: 低地址存放高位,如下: 高地址 buf[3] (0x78) -- 低位 buf[2] (0x56) ...
分类:
其他好文 时间:
2020-01-02 20:32:57
阅读次数:
77
```c #include int main(int argc, char* argv[]) { // 创建文件类型 FILE* file; char buf[1024] = {0, }; // a 是追加,+ 文件不存在可以进行创建 file = fopen("1.txt", "a+"); // ... ...
分类:
编程语言 时间:
2019-12-31 10:54:23
阅读次数:
102
目录 简介 基础变量 ScrollViewDelegate Direction _dragging _container _touchMoved _bounceable _touchLength 方法 create setContentSize deaccelerateScrolling maxCo ...
分类:
其他好文 时间:
2019-12-30 09:46:52
阅读次数:
94
send和recv背后数据的收发过程 send和recv是TCP常用的发送数据和接受数据函数,这两个函数具体在linux内核的代码实现上是如何实现的呢? ssize_t recv(int sockfd, void buf, size_t len, int flags) ssize_t send(in ...
分类:
其他好文 时间:
2019-12-26 19:34:06
阅读次数:
75
原理: 原理主要是 使用 VirtualQueryEx 函数. 函数遍历之后会将内存信息反馈到一个Buf中.这个Buf是个结构体 PMEMORY_BASIC_INFORMATION ...
在上一次实验通过内核搭建TCP通信的基础上,让我们来探究socket程序中的系统调用 1.源码分析(以Replyhi为例) int Replyhi() { char szBuf[MAX_BUF_LEN] = "\0"; char szReplyMsg[MAX_BUF_LEN] = "hi\0"; I ...
分类:
其他好文 时间:
2019-12-19 23:40:22
阅读次数:
146
string (1) size_t rfind (const string& str, size_t pos = npos) const noexcept; c-string (2) size_t rfind (const char* s, size_t pos = npos) const; buf ...
分类:
其他好文 时间:
2019-12-19 19:13:41
阅读次数:
92
1. 在C++98中,标准允许使用花括号{}来对数组元素进行统一的集合(列表)初始化操作,如:int buf[] = {0};int arr[] = {1,2,3,4,5,6,7,8}; 可是对于自定义的类型,却是无法这样去初始化的,比如STL标准模板库中容器,使用的频率非常之高,如vector,若 ...
分类:
编程语言 时间:
2019-12-17 20:06:43
阅读次数:
77
版本说明:使用cocos2d-lua3.17.2版本 FairyGUI下载好链接地址是:https://github.com/fairygui/FairyGUI-cocos2dx 首先创建cocos项目并在VS下运行成功。 开始集成FairyGUI,参考了https://www.jianshu.co ...
分类:
其他好文 时间:
2019-12-13 13:32:52
阅读次数:
291
inotify监听文件并通知 static int inotify_dbfile(const char *spFromRule, const char *spDevFile) { int inotifyFd; int watchfd1; int watchfd2; char buf[BUF_LEN] ...
分类:
其他好文 时间:
2019-12-12 21:10:47
阅读次数:
123