The Java for C++ programmers tutorial says that (highlight is my own):
The keyword final is roughly equivalent to const in C++
What does "roughly" mean in this context? Aren't they exactly the same?
What are the differences, if any?
|
The Java for C++ programmers tutorial says that (highlight is my own):
What does "roughly" mean in this context? Aren't they exactly the same? What are the differences, if any? |
|||
|
|
|
In C++ marking a member function
Values can be assigned, once, later in Java, e.g.:
is legal in Java, but not C++ whereas:
In both Java and C++ member variables may be In Java they must be set before the constructor has finished, this can be achieved in one of two ways:
In C++ you will need to use initialisation lists to give
In Java final can be used to mark things as non-overridable. C++ (pre-C++11) does not do this. E.g.:
But in C++:
this is fine, because the semantics of marking a member function C++11 update:C++11 does in fact allow you to mark both classes and member functions as
Can now be exactly written in C++11 as:
I had to compile this example with a pre-release of G++ 4.7. Note that this does not replace
(The order of Previously there wasn't a direct equivalent of Likewise the Java:
becomes in C++11:
(Previously Interestingly, in order to maintain backwards compatibility with pre-C++11 code |
|||||||||||||||||
|
|
In Java the final keyword can be used for four things:
One important thing is: A Java final member variable must be set exactly once! For example, in a constructor, field declaration, or intializer. (But you cannot set a final member variable in a method). Another consequence of making a member variable final relates to the memory model, which is important if you work in a threaded environment. |
||||
|
|
|
A
A
Java has no inherent way of declaring objects immutable; you need to design the class as immutable yourself. When the variable is a primitive type,
|
|||||
|
|
Javas final works only on primitive types and references, never on object instances themselves where the const keyword works on anything. compare |
|||
|
|
|
Java final is equivalent to C++ const on primitive value types. With Java reference types, the final keyword is equivalent to a const pointer... i.e.
|
|||
|
|
|
According to wikipedia:
|
|||
|
|
|
You have some great answers here already, but one point that seemed worth adding:
This returns a |
|||
|
|
|
I am guessing it says "roughly" because the meaning of |
|||
|
|