Search:

Type: Posts; User: Shaybay92

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    1,835

    Re: Stack implementation and shallow copy

    Am I thinking about this wrong?... is it only if I alter the object its referencing (using mutator methods) rather than the variable holding the reference? I think this might be my issue.. so if I...
  2. Replies
    2
    Views
    1,835

    Stack implementation and shallow copy

    Im new the the shallow copy/deep copy concept. I need a little help understanding whats actually going on in this implementation:


    public class Stack1 {

    private Object value;
    private Stack1...
Results 1 to 2 of 2