How Code in Frame Constructs Object Whose Constructor is Declared in Another Fra

How Code in Frame Constructs Object Whose Constructor is Declared in Another Fra

Question:
How can code in one frame construct an object whose constructor is declared in another frame? For example, new parent.SomeObject(); does not seem to work.

Why?

Answer:
Good question! As in C++, constructors in Java are not considered methods. They don’t return values, and the implicit “this” parameterpassed to a constructor is a pointer to the memory area allocated by thecall to new immediately preceding the constructor. Thus,

new Robot(x, y, z);
is roughly equivalent to the C code:
   Robot *a;   a = malloc(sizeof(Robot));   Robot(a, x, y, z); 
Assume the class Robot looks like this:
   class Robot {      Robot(…) { … } // Robot constructor      SomeObject(…) { … } // your SomeObject “constructor”      // etc.   }
and here’s your declaration of parent:
Robot parent = new Robot(…);
Unfortunately for you, Java regards SomeObject as an ordinary Robot method, not a constructor. Thus, the call
new parent.SomeObject(x, y, z);
would (if it worked at all) pass a pointer to parent as the implicitparameter of SomeObject, not the space allocated by new:
SomeObject(parent, x, y, z);
This picture could become murky in the near future; I hear Sun isconsidering nested classes in a future release of Java.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of