J jinyun Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-13 #1 在很多例程中,经常会看到符号^,特别是涉及到流的情况,不知道这个符号有什么意思,请各位大虾指导一下。
N netfool Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-13 #2 ^是指针操作符号,如: var FInt: Integer; PI: ^Integer; // 指针 begin PI := @FInt; // 操作指针 PI^ := 100; Caption := IntToStr(PI^); end;
^是指针操作符号,如: var FInt: Integer; PI: ^Integer; // 指针 begin PI := @FInt; // 操作指针 PI^ := 100; Caption := IntToStr(PI^); end;
L LiChaoHui Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-13 #7 在定义指针类型时 type myptrtype = ^basetype; //c语言中: typedef basetype * myptrtype; myptr: ^basetype; //c语言中: basetype *myptr; 表示定义指向这种数据类型的指针或变量 在引用指针时: ptr^ 表示指针所指的数据 //c语言中: *ptr
在定义指针类型时 type myptrtype = ^basetype; //c语言中: typedef basetype * myptrtype; myptr: ^basetype; //c语言中: basetype *myptr; 表示定义指向这种数据类型的指针或变量 在引用指针时: ptr^ 表示指针所指的数据 //c语言中: *ptr
M masm Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-13 #9 要想真正掌握指针的精髓,只要粗略地看看汇编就可以了,理解的比谁都透彻!!!