Do COM keep track of all the object references(Accounting)?
Answers were Sorted based on User's Feedback
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 |
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 |
Explain transaction atomicity?
What is dcom?
How do we create dcom object in vb6?
Differentiate normal DLL to COM DLL
hi,I have applied for NIC test plz if any one have test paper pattrn plz send me on "mn_mayank38@yahoo.co.in"
Is dcom dead?
Does .net replace com?
What should QueryInterface functions do if requested object was not found?
How to create an instance of the object in COM?
How do you make a NET component talk to a COM component?
can a COM interface be implemented by more than one COM class in the same COM component?
2 Answers Cap Gemini, Honeywell,
how to call a dll as a COM dll?