guides:objects:classes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
guides:objects:classes [2025-03-31 17:28] – created geekguides:objects:classes [2025-03-31 19:40] (current) – [Functions as Objects] Increase detail on function variable assignment example geek
Line 202: Line 202:
  
  
-===== Function Objects =====+===== Functions as Objects =====
  
 In AutoHotkey v1, there were several global collections of names that were kept separate. There was a collection of command names, a collection of label names, a collection of function names, and a collection of variable names. AutoHotkey v2 has mostly merged these collections, folding them all into the //just// variable name collection. Label-based subroutines have been replaced in favor of functions. Commands have been replaced in favor of functions. And, critically, functions have been redesigned to all be stored //inside// global variables. In AutoHotkey v1, there were several global collections of names that were kept separate. There was a collection of command names, a collection of label names, a collection of function names, and a collection of variable names. AutoHotkey v2 has mostly merged these collections, folding them all into the //just// variable name collection. Label-based subroutines have been replaced in favor of functions. Commands have been replaced in favor of functions. And, critically, functions have been redesigned to all be stored //inside// global variables.
Line 215: Line 215:
 } }
  
 +MyVar := MyFunction ; Put MyFunction into a different variable
 +
 +; MsgBox is an Object and a Function
 MsgBox IsObject(MsgBox) ", " Type(MsgBox) MsgBox IsObject(MsgBox) ", " Type(MsgBox)
 +
 +; MyFunction is an Object and a Function
 MsgBox IsObject(MyFunction) ", " Type(MyFunction) MsgBox IsObject(MyFunction) ", " Type(MyFunction)
  
-MyVar := MyFunction ; Put MyFunction into different variable +MyVar, which contains MyFunction, is also now an object and function 
-MyVar() ; Call the function object stored inside MyVar+MsgBox IsObject(MyVar) ", " Type(MyVar) 
 + 
 +We can call the function inside MyVar easily 
 +MyVar()
 </runner> </runner>