能力值:
( LV4,RANK:50 )
|
-
-
2 楼
mov esi ,TYPE Employee
mov department[esi].years,4
其中
Employee 为60字节的结构体
问题 :esi=60字节数, department[60].years 相当于department 的第60个employee
///////////////////////////
不是 第 60 个,而是 department[60] 相当于 [department + 60],
不是数组下标,仅表示 相对 首地址 偏移 60 字节
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
[QUOTE=风萧兮;870542]mov esi ,TYPE Employee
mov department[esi].years,4
其中
Employee 为60字节的结构体
问题 :esi=60字节数, department[60].years 相当于department 的第60个employee
////////...[/QUOTE]
我明白这个意思 访问department为起始的第60个偏移地址
貌似还是和我的问题 没什么联系啊 !
|
|
|