1.

What Are The Different Types Of Pointers Used In Delphi?

Answer»
  • There are TYPED pointers types that are being provided by Delphi like PChar and PExtended. 
  • These POINTS work with the Inc and Dec functions and don’t have any issue with the use of it. 
  • They can increment the Pint64 pointer type and add the SIZEOF(Int64) bytes at the pointer address location. 
  • This way it allows the POINTING of the pointer to point to the next memory location in the memory. 
  • There are generic pointers that are used to point to anything and very useful in case of dynamic memory allocation.



Discussion

No Comment Found