what does it mean by value semantics and what is mean by implicit pointer semantics?
|
|
Java is using implicit pointer semantics for Object types and value semantics for primitives. Value semantics means that you deal directly with values and that you pass copies around. The point here is that when you have a value, you can trust it won't change behind your back. With pointer semantics, you don't have a value, you have an 'address'. Someone else could alter what is there, you can't know. Pointer Semantics in C++ :
You need an * to ask for pointer semantics and -> to call methods on the pointee. Implicit Pointer Semantics in Java :
Since you don't have the choice of using value semantics, the * isn't needed nor the distinction between -> and ., hence the implicit. |
|||
|
|
|
|
Basically, value semantics means that assigning one value to another creates a copy:
A special case is a function call which gets passed an argument:
This is actually the same for Java and C++. However, Java knows only a few primitive types, among them
There are a few caveats however. For example, many reference types ( Also, arguments still get passed by value. This means that the value of an object passed to a function can be changed but its reference can't:
|
||
|
|
|
|
Java is pass by value, C++ can use both, value and reference semantics. |
||||||
|
|
|
Java uses Read Pass-by-value semantics in Java applications:
Short: All parameters in Java are passed by value. But that doesn't mean an Object gets copied (like the default in PHP4), but the reference to that object gets copied. You'll see all explanations and in-depth examples on Pass-by-value semantics in Java applications |
|||
|
|
