m*p 发帖数: 1331 | 1 维护一个 hashmap 和 一个 linkedlist, 他们存储的都是一样的 Node class objects.
问题,如果用cpp, 可以把obj本身存在其中的一个,然后另一个存储一个pointer就可
以。
现在的问题是,如何用java实现同样的功能?如何用reference 达到 和cpp的 pointer
一样的效果?
谢谢! | g*****g 发帖数: 34805 | 2 Forget about C++, all you need is a LinkedHashMap
objects.
pointer
【在 m*p 的大作中提到】 : 维护一个 hashmap 和 一个 linkedlist, 他们存储的都是一样的 Node class objects. : 问题,如果用cpp, 可以把obj本身存在其中的一个,然后另一个存储一个pointer就可 : 以。 : 现在的问题是,如何用java实现同样的功能?如何用reference 达到 和cpp的 pointer : 一样的效果? : 谢谢!
| k******a 发帖数: 2436 | 3 yes, both collections store references to objects in the heap. If you lose
both references the object memory space will be garbage collected. This is
how java works.
objects.
pointer
【在 m*p 的大作中提到】 : 维护一个 hashmap 和 一个 linkedlist, 他们存储的都是一样的 Node class objects. : 问题,如果用cpp, 可以把obj本身存在其中的一个,然后另一个存储一个pointer就可 : 以。 : 现在的问题是,如何用java实现同样的功能?如何用reference 达到 和cpp的 pointer : 一样的效果? : 谢谢!
|
|