标签:blog io os ar sp div 问题 log amp
被人问到这个问题,各种解决。
google一下,MFC中有一个OFFSET宏,就有这个功能。
写一下:
#define offsetof(structure, member) ((int)(&((structure *)0)->member))
eg:
#include <iostream> using namespace std; #include <stdio.h> #define offsetof(structure, member) ((int)(&((structure *)0)->member)) struct test_struct { int a; char b; int aa[10]; char bb[2]; }; int main() { cout<<offsetof(struct test_struct, a)<<endl; cout<<offsetof(struct test_struct, b)<<endl; cout<<offsetof(struct test_struct, aa)<<endl; cout<<offsetof(struct test_struct, bb)<<endl; return 0; }
标签:blog io os ar sp div 问题 log amp
原文地址:http://www.cnblogs.com/2012harry/p/4026606.html