Search Results

Search found 2 results on 1 pages for 'rgamber'.

Page 1/1 | 1 

  • Reference and Value confusion

    - by rgamber
    Hi I read this question on Stack overflow, and tried to do an example. I had the below code: public static void main(String[] args){ int i = 5; Integer I = new Integer(5); increasePrimitive(i); increaseObject(I); System.out.println(i); //Prints 5 - correct System.out.println(I); //Still prints 5 System.out.println(increaseObject2(I)); //Still prints 5 } public static void increasePrimitive(int n){ n++; } public static void increaseObject(Integer n){ n++; } public static int increaseObject2(Integer n){ return n++; } Does the increaseObject print 5 because the value of reference is changing inside that function? Am I right? I am confused why the increasedObject2 prints 5 and not 6. Can anyone please explain?

    Read the article

  • Inventory Management OOP design

    - by rgamber
    This was an OOP design and implementation interview question, which I came across on glassdoor.com. Design and implement a inventory management system to minimize the number of missed delivery dates while keeping costs to the company low. Of course there is no right answer to this, but I am not sure I understand the question correctly and am wondering what would be a good answer. Is this as simple as creating an undirected graph with nodes as the delivery points, and edges having weights as the cost of the delivery, and then use a single-source-shortest-path algorithm (like Dijkstras, or Bellman-Ford) on the graph? Not sure if this type of question should be asked here,so let me know and I will delete it.

    Read the article

1