From 1f4cb5459144f056969e7bd15587640ddb0176df Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Fri, 1 Apr 2022 00:45:01 -0400 Subject: [PATCH] Update for 01-04-22 00:45 --- tech/Java.wiki | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tech/Java.wiki b/tech/Java.wiki index a59ebc0..ea002b8 100644 --- a/tech/Java.wiki +++ b/tech/Java.wiki @@ -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