Update for 01-04-22 00:45

This commit is contained in:
Tyler Perkins 2022-04-01 00:45:01 -04:00
parent 04646eb7e1
commit 1f4cb54591

View File

@ -34,6 +34,16 @@ can run on almost anything.
}
}}}
=== Copy Constructor ===
{{{
public class MyClass{
public MyClass(MyClass myclass){
//copy constructor here
}
}
}}}
=== Deconstructor/Finalize ===
finalize provides security and is called by the garbage collector. We can call