The Artima Developer Community
Sponsored Link

Java Answers Forum
queue program using interface

1 reply on 1 page. Most recent reply: May 12, 2003 2:43 AM by Adam Duffy

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
SooWon Choi

Posts: 1
Nickname: coolcsw
Registered: May, 2003

queue program using interface Posted: May 5, 2003 11:57 PM
Reply to this message Reply
Advertisement
interface Collection {
int MAX = 100;
void add(Object obj);
void delete();
Object find(Object obj);
int currentCount();
}

(1) as making use of interface(above), implements add(), delete(), find(), currentCount() and return (numbers of elements in queue ) in queue class.

(2) implements real java code of queue class.


Adam Duffy

Posts: 168
Nickname: adamduffy
Registered: Feb, 2003

Re: queue program using interface Posted: May 12, 2003 2:43 AM
Reply to this message Reply
I'm sorry SooWon but I don't see your question. What is that you would like assistance with?

Adam

Flat View: This topic has 1 reply on 1 page
Topic: Applet and JVM Previous Topic   Next Topic Topic: String Util

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use