Jump to content
  • 0

Fastmap -> Hashmap


Gam3Master

Question

Hello cheaters.

 

I'm trying to adapt some things on aCis and as you know it uses java 8 and instead FastMap it needs HashMap and istead FastList it needs ArrayList.

 

So everytime I replace imports I have some methods which HashMap/ArrayList doesn't have or have another method .for example

 

10ce47b79c.jpg[/img]

 

What are similar methods for these in HashMap? or how can I change it?

 

Thanks in advance.

 

 

 

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Use merge or compute methods for first cases. You can replace the whole for loop content for merge (!containsKey part included)

 

http://java.boot.by/ocpjp8-upgrade-guide/ch06s03.html

 

http://codereview.stackexchange.com/questions/57078/more-elegant-way-to-increment-integers-in-map

entries.merge(vote, 1, (oldValue, one) -> oldValue + one);

About max and result, simply = 0. It iterates over whole map to find values anyway...

Link to comment
Share on other sites

  • 0

If you actually understand what a map and a list is then you can pretty much do it yourself.

If I understand I wouldn't ask a question  :happyforever:

Link to comment
Share on other sites

  • 0

If I understand I wouldn't ask a question  :happyforever:

FastMap.Entry head()
Returns the head entry of this map.
FastMap.Entry getEntry(java.lang.Object key)
Returns the entry with the specified key.

 

Its pretty clear i think. 

Link to comment
Share on other sites

  • 0

Use merge or compute methods for first cases. You can replace the whole for loop content for merge (!containsKey part included)

 

http://java.boot.by/ocpjp8-upgrade-guide/ch06s03.html

 

http://codereview.stackexchange.com/questions/57078/more-elegant-way-to-increment-integers-in-map

entries.merge(vote, 1, (oldValue, one) -> oldValue + one);

About max and result, simply = 0. It iterates over whole map to find values anyway...

Thanks for response!

 

Sorry for dumb question one more but the final result must be

 

12d5bdee04.jpg[/img]

 

Like this?

Edited by Gam3Master
Link to comment
Share on other sites

  • 0
 temp = null;

 it's pointless. It's the goal of a GC to handle object deletion by itself. Otherwise yup, try and see.

 

Thanks understood. 

 

Thats the case if HashMap is <Integer, Integer> but what if its <L2PcInstance>?

Link to comment
Share on other sites

  • 0

Thanks understood. 

 

Thats the case if HashMap is <Integer, Integer> but what if its <L2PcInstance>?

 

If that would be a problem, there would have OutOfMemoryException everywhere (or at least cycles would be shorter and shorter and shorter) on aCis.

 

WeakHashMap and WeakReference exist, but if your GC runs while you retrieve your list, you can end with funny results depending how you gonna use it.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...