Results 1 to 5 of 5
Thread: confusion about the Note class
- 04-16-2011, 04:09 AM #1
Member
- Join Date
- Apr 2011
- Posts
- 52
- Rep Power
- 0
confusion about the Note class
Here is the link
Node
It said
Node(E initialData, Node<E> initialLink)
Initialize a node with a specified initial data and link to the next node.
Parameters:
initialData - the initial data of this new node
initialLink - a reference to the node after this new node--this reference may be null to indicate that there is no node after this new node
Is the initialLink a Node object which has the initialData part? It sounds like initialData is ignored and only the reference to the next node is useful.
In the next link
Linked list - Wikipedia, the free encyclopedia
initialLink's picture is an arrow. Where is the data part?
Thanks.
- 04-16-2011, 04:13 AM #2
initialData: value that "this" Node contains.
initialLink: a reference to the next Node in the List.
Java Code:Node<String> n1 = new Node<String>("one", null); Node<String> n2 = new Node<String>("two", n1);
- 04-16-2011, 04:27 AM #3
Member
- Join Date
- Apr 2011
- Posts
- 52
- Rep Power
- 0
Is n2.initialLink.initialData "one"?
Thanks.
- 04-16-2011, 04:42 AM #4
Member
- Join Date
- Apr 2011
- Posts
- 52
- Rep Power
- 0
I tried the code and used
import edu.colorado.nodes;
It had an error
package edu.colorado does not exist.
Is there a way to use it?
- 04-16-2011, 05:35 AM #5
The class files or the Jar file have to be in the classpath or build path.
Similar Threads
-
things necessary to take note of before going to learn EE
By kulangotski in forum New To JavaReplies: 0Last Post: 12-28-2010, 06:30 AM -
Confusion here @@' Help!
By pleasurelyours in forum New To JavaReplies: 7Last Post: 06-09-2010, 03:42 PM -
SCJP Handwritten Note
By arudra.scjp in forum Java CertificationReplies: 0Last Post: 08-14-2009, 01:24 PM -
How to write the JNLP appln for installing the note.exe file in the client location
By srilatha in forum Advanced JavaReplies: 5Last Post: 07-26-2009, 03:37 PM -
note while compiling
By j2vdk in forum New To JavaReplies: 3Last Post: 09-03-2008, 11:52 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks