| | our teacher assigned us to do an IS that uses object oriented programming language. i decided to use java but im having a few troubles linking objects with other objects when im searching... can anyone help me? tnx. |
|
|
QUOTE(leiaah @ Jan 23 2005, 09:38 AM) our teacher assigned us to do an IS that uses object oriented programming language. i decided to use java but im having a few troubles linking objects with other objects when im searching... can anyone help me? tnx. If you could post the problem here that would be great. Like: What you want, what isn't working, relevant code (if any).
well i know how to write a file and to read a file but im having trouble searching for one particular object. I put an object ID on each object that I made and I was wondering how to search for it. Should I be using array? thanks.
In that case I recommend HashTable. Something like: CODE Hashtable objects = new Hashtable(); hashtable.put("Object#1", new MyObject()); And this to get an object CODE MyObject o = (MyObject)objects.get("Object#1"); You can think of a HasTable as a table with two columns. One column hold the identifiers/keys the other the Objects. So if you have an Object you call "ob" and "ob" has a public method called "getID()" which returns the ID, and a HashTable you call "ht" then you can store the Object in the HashTable by: ht.put(ob.getID(), ob); Read more here: http://java.sun.com/j2se/1.4.2/docs/api/ja.../Hashtable.html
Similar Topics
Keywords : working, objects, java, searching, objects
AJAX relies on Java Script (10) Recently i did one of my project using AJAX and i could experience the real advantage of this (0) After researching on this topic on Google, I found no dependable page to which I come to a (2) As I started to learn Java, I came across a tutorial for making Java applets. As I read on, I found Looking for working, objects, java, searching, objects
|
|
![]() Working With Objects In Java - searching with objects |
| ADD REPLY / Got an Opinion! | a humble request :-) | RAPID SEARCH! | Free Hosting | [X] |
|
Express your Opinions, Thoughts or Contribute your information that might help someone here. Ask your Doubts & Queries to get answers.. "Together, We enlight each other!" |
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP. | 500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE |
|