Difference between revisions of "Nil"

From Lazarus wiki
Jump to navigationJump to search
m
Line 1: Line 1:
 
{{Nil}}
 
{{Nil}}
  
'''Nil''' is an empty pointer. The nil pointer is pointer that does not point to any object, variable ... It is pointer that is currently pointing to nothing.  
+
'''Nil''' is an empty [[Pointer|pointer]]. The nil pointer is pointer that does not point to any object, [[Variable|variable]] ... It is pointer that is currently pointing to nothing.  
  
  
Line 8: Line 8:
 
* [[Assigned]]  returns [[False|false]] if a reference is nil.
 
* [[Assigned]]  returns [[False|false]] if a reference is nil.
 
* [[FreeAndNil]] free memory for an object and set it to nil.
 
* [[FreeAndNil]] free memory for an object and set it to nil.
 
[[Category:Pascal]]
 

Revision as of 17:40, 20 October 2018

Deutsch (de) English (en) suomi (fi) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

Nil is an empty pointer. The nil pointer is pointer that does not point to any object, variable ... It is pointer that is currently pointing to nothing.


Read more