Do COM keep track of all the object references(Accounting)?

Answers were Sorted based on User's Feedback



Do COM keep track of all the object references(Accounting)?..

Answer / naviyr

Object references in COM is accounted using two methods of
IUnknown Interface (AddRef and Release).

AddRef: Increments a reference count whereas "Release"
decrements the count.
When the count of the reference is zero the DLL is unloaded
from memory.

Is This Answer Correct ?    10 Yes 2 No

Do COM keep track of all the object references(Accounting)?..

Answer / vidhya

Component uses reference count for memory
management.whenever a client gets an interface,reference
count get incremented. When client finishes using interface
reference count get decremented. If the reference count
goes to 0, component deletes itself from memory. When
client uses existing interface to create another reference
client has to increment reference count by calling "AddRef"
and release when client finshes using interface.

Is This Answer Correct ?    7 Yes 1 No

Do COM keep track of all the object references(Accounting)?..

Answer / naresh

yes

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More COM DCOM Interview Questions

What is the difference between aggregated and contained objects?

0 Answers  


What are the different compatibility types when we create a COM component?

1 Answers   TCS,


How do you make a NET component talk to a COM component?

3 Answers   TCS,


Does .net replace com?

0 Answers  


Explain Futures of COM?

0 Answers  






how to call a dll as a COM dll?

0 Answers  


how do you know it is general dll or com dll

5 Answers  


Write a JCL to copy only selected members from a partitioned data set to another partitioned data set. (Use: IEBCOPY)

1 Answers   Wipro,


Can I use com components from .net programs?

0 Answers  


Explain JIT activation?

1 Answers  


Explain transaction atomicity?

1 Answers  


What is IUnknown? What methods are provided by IUnknown?

3 Answers   IBM,


Categories