Integer ->PInteger(50分)

  • 主题发起人 主题发起人 cHengyAng
  • 开始时间 开始时间
C

cHengyAng

Unregistered / Unconfirmed
GUEST, unregistred user!
定义
cList: array[0..1000] of integer;
.
.
GetTextExtentExPoint(... , cList[0],lpS)<-D4 报错类型不匹配Integer &amp;
PInteger
.
.
现在我没时间查这个指针问题,望兄弟们尽快帮忙,告知如何转换
 
@cList[0]
或者用PChar
 
应该这样:
@cList[0]
 
Pinteger(cList[0])、@cList[0]、@cList均可以
 
Pinteger(cList[0])将32bit整数cList[0]强行转换为32bit指针,该指针并不是指向cList[0],恐怕不是cHengyAng所需,
@cList只是需要指向cList的下标为0时有用
 
多人接受答案了。
 
其实消息公布不到5分钟,用bethouvnlue的方法已经解决了问题。就是网络
太慢,消息不能上传,耽搁大家了,谢谢支持!
 
后退
顶部