Tags
Archive
- August 2012 (1)
- July 2012 (1)
- February 2012 (2)
- January 2012 (1)
- December 2011 (2)
- November 2011 (1)
- October 2011 (1)
- September 2011 (2)
- August 2011 (1)
Tag Archives: autoboxing
Java: Passing Variables into Methods
Java use pass-by-value semantics, instead of pass-by-reference, when passing variables to methods. This means that Java copies the variable values used by the caller to pass them to the method. If the variable has a primitive type, the value of the … Continue reading
