码迷,mamicode.com
首页 > 其他好文 > 详细

#include_next <filename.h>

时间:2014-08-27 18:17:28      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   ar   文件   div   cti   

意思就是include下一个(除本文件)文件名为 filename.h 的头文件

作用是这样的,就是你想用自己的函数代替其他库函数,但是
1. 不想修改源代码,
2. 不能修改原来的头文件
这是就可以用#include_next了。
下面的例子用在不改变源代码和头文件的情况下,实现了记录malloc函数调用情况。

C/C++ code
 
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * @file        stdlib.h
 * @author      mymtom
 */
#ifndef STDLIB_H
#define STDLIB_H
 
#include_next <stdlib.h>
 
#include <stdio.h>
 
 
static void * my_malloc(const char *file, int line, const char *func, size_t size)
{
        void *ptr;
        ptr = malloc(size);
 
        /* 记录调用函数名称和返回值 */
        printf("位于文件%s第%d行的函数%s调用了malloc, size=%d, 返回值为%p\n", file, line, func, size, ptr);
 
        return ptr;
}
 
#define malloc(size) my_malloc(__FILE__, __LINE__, __FUNCTION__, size)
 
#endif /* STDLIB_H */

#include_next <filename.h>

标签:style   http   color   os   io   ar   文件   div   cti   

原文地址:http://www.cnblogs.com/sshao/p/3939805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!