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 IUnknown? What methods are provided by IUnknown?

3 Answers   IBM,


Explain JIT activation?

1 Answers  


Define and explain COM?

8 Answers   Microsoft,


What are queued components?

0 Answers  


Which namespace do the classes, allowing you to support COM functionality, are located?

0 Answers  






Explain queued components.

2 Answers  


Can you explain what is dcom?

0 Answers  


Suppose we have object b and aggregated object c (in- proc server), created by b. Can you access any interface of b from c? What?s the difference between aggregated and contained objects?

0 Answers  


Let?s assume we have object B and aggregated object C (in- proc server), created by B. Can you access any interface of B from C? What?s the difference between aggregated and contained objects?

3 Answers  


What is the use of com component in .net?

0 Answers  


Explain Futures of COM?

0 Answers  


what is mean by scintific,commercial and business applications? How they differ? Please answer me. Advance thanks.

0 Answers   Excel,


Categories