|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在C51的说明文档里面,有这么这么两段:
“
Abstract pointer types are described here using code examples with the following variables.
char xdata *px; /* ptr to xdata */char idata *pi; /* ptr to idata */char code *pc; /* ptr to code */”与:“Memory-specific pointers always include a memory type specification in the pointer declaration and always refer to a specific memory area. For example:
char data *str; /* ptr to string in data */int xdata *numtab; /* ptr to int(s) in xdata */long code *powtab; /* ptr to long(s) in code */ ”我的问题是这两个的确切的区别是怎么理解的呢?谢谢各位指教! |
|