<div dir="ltr"><div><div><div><div><div><div><div><div>Hi,<br><br></div>So I don't have time right now to write the answer this needs, but I'll give you something to experiment with:<br><br></div>The base class vtkObject that contains the reference count used by vtkSmartPointer/vtkNew has a method you can call to see the reference count: GetReferenceCount.  It is not recommended for applications to use this directly, but you can use it to experiment to see what happens to the reference count of an object at different points in your program.<br><br></div>As far as using vtkSmartPointer/vtkNew in functions here are some general tips:<br><br></div>If the object is a parameter of the function, then whoever called the function should guarantee that the object stays valid for the lifetime of the function call.<br></div>If you are creating the object in a function and want it to be deleted when the function exits use vtkSmartPointer/vtkNew to manage that (don't call Delete yourself--it is too easy to forget)<br></div>If you are returning a vtkObject from your function, you can change the return type to vtkSmartPointer (vtkNew doesn't work here)</div><div><br></div><div>For more see [1].</div><div><br></div>HTH,<br></div>Shawn<br><br>[1]: <a href="https://www.vtk.org/Wiki/VTK/Tutorials/SmartPointers">https://www.vtk.org/Wiki/VTK/Tutorials/SmartPointers</a><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 24, 2017 at 5:35 AM, ran <span dir="ltr"><<a href="mailto:kor1581@gmail.com" target="_blank">kor1581@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I have few doubts about vtk smart pointers usage, as in case of different<br>
scenarios explained below<br>
<br>
Scenario1:<br>
<br>
For example if I have two class Red and Blue with following structure<br>
<br>
Class Red<br>
{<br>
Public:<br>
        Red(){}<br>
SetVTKtem(vtkSmartPointer<<wbr>vtkType>  ptrParam)<br>
{<br>
        ptr  =  ptrParam<br>
}<br>
private:<br>
        vtkSmartPointer<vtkType> ptr  ;<br>
};<br>
<br>
Class Blue<br>
{<br>
Public:<br>
        Blue ()<br>
        {<br>
                ptr1   = vtkSmartPointer< vtkType >::New();<br>
ptr2   = vtkSmartPointer< vtkType >::New();<br>
        }<br>
        vtkSmartPointer<vtkType> GetPtr1()<br>
{<br>
        return ptr1 ;<br>
}<br>
        vtkSmartPointer<vtkType> GetPtr2()<br>
{<br>
        return ptr2 ;<br>
}<br>
  private:<br>
        vtkSmartPointer<vtkType> ptr1  ;<br>
vtkSmartPointer<vtkType> ptr2  ;<br>
};<br>
<br>
Then in main method,<br>
<br>
void main()<br>
{<br>
Blue *objBlue = new Blue ;<br>
Red * objRed =  new Red;<br>
<br>
//In a series of events in main, will set prt1, ptr2, ptr3 in objBlue to ptr<br>
in objRed<br>
<br>
//in first event, set<br>
<br>
objRed ->SetVTKtem(objBlue -> GetPtr1());<br>
<br>
// second event, set<br>
objRed ->SetVTKtem(objBlue -> GetPtr2());<br>
<br>
<br>
// in third event, again will set<br>
objRed ->SetVTKtem(objBlue -> GetPtr1());<br>
<br>
<br>
//Then if  delete objBlue, what happens to the object vtk objects pointed<br>
by ptr1, ptr2, ptr3.<br>
<br>
delete objBlue;<br>
}<br>
Then<br>
1)      After calling,<br>
objRed ->SetVTKtem(objBlue -> GetPtr2());<br>
will reference of ptr1 of objBlue decrement to one?<br>
will reference of ptr of objRed decrement to one?<br>
<br>
2)      After deleting objBlue, what happens to the object vtk objects pointed<br>
by ptr1, ptr2, ptr3?<br>
Will there reference be zero?<br>
<br>
<br>
Scenario2:<br>
<br>
I have another doubt,<br>
 is it safe to call vtkSmartPointer and vtkNew pointers in local variable to<br>
functions which calling recursively?<br>
For example<br>
<br>
Class Yellow<br>
{<br>
public:<br>
function()<br>
{<br>
                vtkNew<vtkType1> ptrType1  = vtkSmartPointer< vtkType1>::New();<br>
}<br>
};<br>
<br>
<br>
Then in main method,<br>
void main()<br>
{<br>
Yellow objYellow = new Yellow;<br>
//Then in a series of events<br>
<br>
//In first event<br>
        objYellow-> function();<br>
//In second event<br>
objYellow-> function();<br>
..<br>
}<br>
<br>
After second call to function(), will object pointed by ptrType1  in first<br>
call be function be deleted?<br>
<br>
Scenario3:<br>
Another doubt is if,<br>
<br>
Class Red<br>
{<br>
Public:<br>
        Red(){}<br>
SetVTKtem(vtkSmartPointer<<wbr>vtkType>  ptrParam)<br>
{<br>
        ptr  =  ptrParam<br>
}<br>
private:<br>
        vtkSmartPointer<vtkType> ptr  ;<br>
};<br>
<br>
Class Blue<br>
{<br>
Public:<br>
        vtkSmartPointer<vtkType> GetPtr1()<br>
{<br>
        return ptr1.GetPointer() ;<br>
}<br>
  private:<br>
        vtkNew<vtkType> ptr1  ;<br>
};<br>
<br>
<br>
Then in main function,<br>
<br>
void main()<br>
{<br>
Blue *objBlue = new Blue ;<br>
Red * objRed =  new Red;<br>
<br>
//In a series of events in main, will set prt1, ptr2, ptr3 in objBlue to ptr<br>
in objRed<br>
<br>
//in first event, set<br>
<br>
<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.<wbr>com/VTK-Users-f1224199.html</a><br>
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_<wbr>FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>