Computer Science, asked by PATTSEHEADSHOT007, 9 months ago

How Are Objects Implemented In A Software​

Answers

Answered by sridhar66
3

Explanation:

this is the answer to the question please follow me

Attachments:
Answered by cocl0376
2

Answer:

Object Oriented languages like Java have special memory space (Heap) allocated to them based on the JVM they are running on. These objects are created and sits in the Heap as long as they are reachable by the program execution. In other words as long as they are needed. When they are not needed, a special functionality in Java, Garbage Collection, delete these unusable objects and clear their memory for new ones.

Similar questions