Difference between revisions of "ObjectType:int64ptr"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
{{ObjectType-Vitals|int64ptr|[[LavishScript]]|[[ObjectType:int64ptr|int64ptr]]|The string representation of this int64|none|no|int64 *}}
 +
 
== Description ==
 
== Description ==
An [[DataType:int64ptr|int64ptr]] is simply a <tt>pointer</tt> to an [[DataType:int64|int64]].  The type inherits [[DataType:int64|int64]], and can be used as if it ''were'' an [[DataType:int64|int64]].
+
An [[ObjectType:int64ptr|int64ptr]] is simply a <tt>pointer</tt> to an [[ObjectType:int64|int64]].  The type inherits [[ObjectType:int64|int64]], and can be used as if it ''were'' an [[ObjectType:int64|int64]].
  
 
== Members ==
 
== Members ==
* [[DataType:int|int]] '''Address''': The memory address of the actual int64
+
* [[ObjectType:int64|int64]] '''Address''': The memory address of the actual int64
  
 
== Methods ==
 
== Methods ==
 
''(none)''
 
''(none)''
 
== Inherits ==
 
* [[DataType:int64|int64]]
 
 
== Returns ==
 
The string representation of this int64
 
  
 
== Examples ==
 
== Examples ==
 
===Display a int64 pointer's address===
 
===Display a int64 pointer's address===
 
*echo Memory Address: ${Point1.Address}
 
*echo Memory Address: ${Point1.Address}
 
== Operates On ==
 
<tt>__int64 *</tt>
 
 
Note: This type is identical to int64, and is only provided for completeness.
 
  
 
== See Also ==
 
== See Also ==
* [[LavishScript:Data Types|Data Types]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
[[Category:LavishScript Data Types]]
 

Latest revision as of 16:03, 8 July 2018

Object Type Vitals
int64ptr
Defined By LavishScript
Inherits int64ptr
Reduces To The string representation of this int64
Variable Object Type none
Uses Sub-Types no
C/C++ Type int64 *

Description

An int64ptr is simply a pointer to an int64. The type inherits int64, and can be used as if it were an int64.

Members

  • int64 Address: The memory address of the actual int64

Methods

(none)

Examples

Display a int64 pointer's address

  • echo Memory Address: ${Point1.Address}

See Also

LavishScript Object Types