Slashdot Mirror


User: Adam+Dyga

Adam+Dyga's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:C/C++ implementation on Image Recognition Neural Networks, Open Sourced · · Score: 1

    Const references? Here you are:

    final Object obj = new Object();

    In Java everything is passed by VALUE (yes, that's not a mistake) - both primitive types and references.
    When you pass the 'obj' variable from the example above as a method parameter,
    you actually pass the reference (or pointer in other words) by value.