What is the equivalent of Java's final in C#?
EDIT: Sorry, I should have been clearer. I meant what is the equivalent when applied to a member variable - so it must be assigned once and only once.
|
What is the equivalent of Java's EDIT: Sorry, I should have been clearer. I meant what is the equivalent when applied to a member variable - so it must be assigned once and only once. |
|||||
|
|
The ClassesTo prevent subclassing (inheritance from the defined class): Java
C#
MethodsPrevent overriding of a Java
C#
As Joachim Sauer points out, a notable difference between the two languages here is that Java by default marks all non-static methods as VariablesTo only allow a variable to be assigned once: Java
C#
As a side note, the effect of the |
|||||||||||||||||||||
|
|
It depends on the context.
|
|||||||||||||
|
|
What everyone here is missing is Java's guarantee of definite assignment for final member variables. For a class C with final member variable V, every possible execution path through every constructor of C must assign V exactly once - failing to assign V or assigning V two or more times will result in an error. C#'s readonly keyword has no such guarantee - the compiler is more than happy to leave readonly members unassigned or allow you to assign them multiple times within a constructor. So, final and readonly (at least with respect to member variables) are definitely not equivalent - final is much more strict. |
|||
|
|
|
C# constants are declared using the const keyword for compile time constants or the readonly keyword for runtime constants. The semantics of constants is the same in both the C# and Java languages. |
|||
|
|
|
Java class final and method final -> sealed. Java member variable final -> readonly for runtime constant, const for compile time constant. No equivalent for Local Variable final and method argument final |
||||
|
|
|
sealed |
|||
|