Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何制作一个整数,而不是设置一个值,而是将它设置为对另一个变量的值的引用?
在 VB6 中有时需要使用整数作为指针来调用系统函数,但在 vb.net 中不再需要和能够使用整数作为指针。
如果您需要在 vb.net 中使用地址,您可以使用AddressOf函数和InPtr非托管内存。但是,很有可能您并不真的需要这样做——这相对不常见。
AddressOf
InPtr
这简直是胡说八道。作为内存中某个位置的地址的引用与整数值在 32 位上占据相同的位置。甚至比 64 位上的地址还要少。
除非您想将指针传递给 API 或其他东西,否则您最好坚持使用变量本身。