supposed i created a linked list in class A how can class B access it? please give me some examples if any many thanks
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.
|
|
|
If the linked list is maintained by class A. You should create an interface that can be used by class B. I can think of:
And there are possibly more (like an iterator) but it should suit your needs. An other option is to create it outside class A and B and pass it to the classes at construction. |
|||||
|
|
One way is to pass the list to both classes through a constructor.
|
|||
|
|
|
Does it have to be a linked list? if you use a different structure that you can control the memory space of, you can use shared memory nicely. |
|||
|
|