Java's final vs. C++'s const
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?