1 / 29
Using Maps
290 likes | 516 Vues
2. A simple map: Hashtable. To create a Hashtable, use: import java.util.*; Hashtable table = new Hashtable(); To put things into a Hashtable, use: table.put(key, value); To retrieve a value from a Hashtable, use: value = table.get(key);. 3. Example use of a Hashtable. import java.util.*; public class HashtableUser { public static void main(String[] args) { Hashtable table = new Hashtable(); table.put(31910
Télécharger la présentation
Using Maps
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
More Related