C/C++
文章平均质量分 81
「已注销」
生如夏花之绚烂,死如秋叶之静美!
展开
-
C/C++语言中Static的作用详述
在C语言中,static的字面意思很容易把我们导入歧途,其实它的作用有三条。 (1)先来介绍它的第一条也是最重要的一条:隐藏。 当我们同时编译多个文件时,所有未加static前缀的全局变量和函数都具有全局可见性。为理解这句话,我举例来说明。我们要同时编译两个源文件,一个是a.c,另一个是main.c。 下面是a.c的内容 char a = 'A'; // global variable转载 2012-03-13 08:47:51 · 673 阅读 · 0 评论 -
一些开源项目网址
一些开源项目网址 http://code.ijinshan.com/ http://search.csdn.net/ CSDN搜索,CSDN还是有非常多的编程资源的,用它的搜索能搜出不少东西。代码类别也比较全面。 http://snippets.org/ 简单实用的代码收集网站,强力推荐。比如你要找个DES加密,要找个数据压缩,找个INI文件操作的C代码等,均能手到擒来。 h转载 2012-04-05 17:46:43 · 860 阅读 · 0 评论 -
Advanced Memory Allocation 内存分配进阶
May 01, 2003 By Gianluca Insolvibile in Embedded Software Call some useful fuctions of the GNU C library to save precious memory and to find nasty bugs. Dealing with dynamic翻译 2012-04-21 03:25:39 · 6062 阅读 · 0 评论 -
C++: Custom memory allocation
C++: Custom memory allocation Fast memory allocations along with memory leak detection can have a big impact on games performance. C++ provides two well known functions to allocate dynamic (heap转载 2013-04-17 13:49:46 · 1662 阅读 · 0 评论 -
一个简单的sniffer抓包程序
#include "unp.h" #include /* Ethernet header are are always exactly 14 bytes */ #define SIZE_ETHERNET 14 /* Ethernet address are 6 bytes */ #define ETHER_ADDR_LEN 6 #define LINE_WIDTH 16 /* +---原创 2013-05-12 19:39:38 · 1569 阅读 · 0 评论