For fields, they're almost exactly the same thing. There are different rules around initialization (irrelevant here) and for some times final fields in Java act like const fields in C#, but in this case I think they're effectively equivalent. – Jon SkeetJul 25 at 9:47
Many thanks - this is what I needed – peter.murray.rustJul 25 at 9:49
note that for primitive types there's also "const". – Robert FraserJul 25 at 10:08
The criteria for const is not being primitive or not, rather, it's being able to literally describe a value for it in code. You can have anyconst with a reference type set to null. – MehrdadJul 25 at 10:13
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.