Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This small snippet of code is to increment a count value (integer) which is stored in a dictionary using my referenced object as a key. When the dictionary is small, multiple lookups aren't a big deal but this particular dictionary can get quite large.

Private RefCount As IDictionary(Of ILifeTimeManaged, Integer)
......... CODE HERE.....

Private Sub IncrementRefCount(ByVal entity As ILifeTimeManaged)

    Dim prevCount As Integer

    ''# if we have no reference entry, add one and set its count to 1

    If Not RefCount.TryGetValue(entity, prevCount) Then
        RefCount.Add(entity, 1)
    Else
        ''# otherwise increment its count by 1

        RefCount.Item(entity) = prevCount + 1
    End If

End Sub

I find a corresponding dictionary entry then increment the int stored in the value, or add a new dictionary entry.

Is it a bad idea to use a pointer to the dictionary value? Then I can avoid the second key lookup when I already have gotten the value. How would you implement it? Is this even possible in .NET4?

Can I do it using IntPtr do you think? http://msdn.microsoft.com/en-us/library/system.intptr.aspx

RefCount.Item(entity) = prevCount + 1
share|improve this question

2 Answers

up vote 1 down vote accepted

You cannot make a pointer to any given type in VB like you could in C++. However, you can wrap a value type in a reference type to get the semantics you want.

Public Class Ref(Of T As Structure)

    Public Sub New()
    End Sub
    Public Sub New(ByVal value As T)
        Me.Value = value
    End Sub

    Public Property Value As T

End Class

This lets you return a "pointer" to an integer (more correctly, a reference to something containing an integer). You could then write something like this:

Private RefCount As IDictionary(Of ILifeTimeManaged, Ref(Of Integer))
......... CODE HERE.....

Private Sub IncrementRefCount(ByVal entity As ILifeTimeManaged)
    Dim count As Integer

    ''# if we have no reference entry, add one and set its count to 1
    If Not RefCount.TryGetValue(entity, count) Then
        RefCount.Add(entity, New Ref(Of Integer)(1))
    Else
        ''# otherwise increment its count by 1
        count.Value += 1
    End If
End Sub

You could add some conversion methods between T and Ref(Of T) to the Ref class to possibly simplify the syntax (like in the Add call). In my opinion, doing so would give you something closer to C++ references than C++ pointers. Whether that's what you want or not is up to you.

Edit RE your Edit: IntPtr is designed to represent any pointer type in interop code calls. Perhaps a better name would have been NativePtr. There is no way to use an IntPtr in managed code the way I think you want, as you would a pointer in C++.

share|improve this answer
Right but here I weigh the cost of unboxing versus the cost of my Dictionary lookup. – Matthew Feb 24 '11 at 0:00
To clarify: I'm talking about the "unboxing" of the container to derive my int, if I use a reference object to hold one. – Matthew Feb 24 '11 at 0:26
@Matthew PK: You have the "unboxing" of the Ref vs the "unboxing" of the Dictionary and the lookup, so it should be a win for the Ref in this function, but this is definitely a micro-optimization. – Gideon Engelberth Feb 24 '11 at 1:27

That does not look like a bad idea.

If you want to improve performance, you may want to add a property RefCount to the ILifeTimeManaged interface and use it instead of using the dictionary. But I don't know your design and goal, so can't say is this apropriate to you.

share|improve this answer
The ILifeTimeManaged cannot store the reference count. ILikeTimeManaged objects are managed by a LifeTimeManager which basically keeps track of how many instances are outstanding and handling the creation or destruction of them. – Matthew Feb 23 '11 at 23:25
Ok. Btw, you realize that in .NET you don't actually need to count references, because GC do all the work with memory management? – Artyom Krivokrisenko Feb 23 '11 at 23:53
Not in my case. The manager handles the disposing of all of its objects and decides whether to reissue them. You're gonna have to trust me on my implementation here ;) – Matthew Feb 23 '11 at 23:59
Can't add comments anywhere... If you are using generic Dictionary<ILifeTimeManaged, int> then you will have no boxing/unboxing operations – Artyom Krivokrisenko Feb 24 '11 at 0:13
I assume you're talking about my comment to the other answer... if I create an reference object to hold an int value, I will be "unboxing" the reference object to derive my integer. – Matthew Feb 24 '11 at 0:26
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.