Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

instance vs initiate

initialize is the term commonly used with variables whenever u assign a value to it before executing.
example: 
obj = 1obj = "foo"

instantiation refers to assigning an Object to a class(which in turn act as the reference to variables and methods/functions of that class).
example: 
Dim obj As New Object()


reference: https://www.quora.com/What-is-difference-between-Instantiate-and-Initialize-in-programming
 
PREVIOUS NEXT
Tagged: #instance #initiate
ADD COMMENT
Topic
Name
1+8 =