const and non-const function overloading

c#, constants, java, overloading

Solution

Java and C# don't have the concept of const functions, so the concept of overloading by const/non-const doesn't really apply.

Problem

We have `const` and non-`const` function overloading in C++ as described here and used in STL iterators. Do we have such method overloading in Java and C#?

Original source

Related problems