Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking at an example implementation of a linkedlist consisting of nodes. The set method goes to the input index and sets the value equal to the input value. Additionally, it returns the old value. When he retrieves the old value he always creates a new node object instead of an object of type E. Is that necessary or is that considered good practice? Also are there any efficiency considerations? Example code below

public E set(int idx, E newVal){

    //looping code to get to the right node
    //Assume variable finger is now a Node object that's at the right index

    Node<E> temp = new Node<E>(finger);
    finger.setValue(newVal);
    return temp.getValue();

    //Can I do the following instead?
    E temp = finger.getValue();
    finger.setValue(newVal);
    return temp;

 } 
share|improve this question
The first approach doesn't look correct to me. You're calling getValue() on an object after you call setValue(), so I imagine that would return the new value. – Oli Charlesworth Jun 14 '11 at 22:33
1  
yea sorry i was typing it in and typed wrong he creates a new node. I'll edit it now – jhlu87 Jun 14 '11 at 22:34

3 Answers

up vote 1 down vote accepted

No, it's perfectly acceptable to use the generic type parameter (E in this case). There's nothing wrong with your second code sample.

According to the Generics FAQ:

Can I use a type parameter like a type?

No, a type parameter is not a type in the regular sense (different from a regular type such as a non-generic class or interface).

Type parameters can be used for typing (like non-generic classes and interfaces)::

  • as argument and return types of methods
  • as type of a field or local reference variable
  • as type argument of other parameterized types
  • as target type in casts
  • as explicit type argument of parameterized methods

Type parameters can NOT be used for the following purposes (different from non-generic classes and interfaces)::

  • for creation of objects
  • for creation of arrays
  • in exception handling
  • in static context
  • in instanceof expressions
  • as supertypes
  • in a class literal
share|improve this answer
Well, anywhere except e.g. new E! – Oli Charlesworth Jun 14 '11 at 22:31
@Oli: Quite correct. I've expanded my answer to clarify. – Daniel Pryden Jun 14 '11 at 22:33

Assuming that setValue() and getValue() modify the same attribute, the first 3 lines of code will return newVal (they don't make much sense)

temp is a reference to finger, so if you set a new value to an attribute in finger, then it will change in temp.

The last three lines don't have the same behavior, since they return the previous value.

share|improve this answer
1  
The OP has now corrected the code snippet... – Oli Charlesworth Jun 14 '11 at 22:36
Ahh! ok, in this case, you'll have the same behavior, but the last three lines are more readable and efficient. – Fido Jun 14 '11 at 22:40

That impl is quite odd. It probably was translated from a C++ impl

Node<E> temp = finger; // C++, copy constructor, default is shallow copy
finger.setValue(newVal);
return temp.getValue();

That would be very cheap for C++.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.