Ten Most Common Errors in Java :
It’s natural to make mistake, even if you are new to java or an expert in coding. Here’s a list of common mistakes done while coding in java : 10. Method Overriding – mismatch of the method name: Overriding is very helpful feature and is heavily used in java. Easiest way of trap is mistype of the method name. If we mistype the name, we are no longer overriding the method but creating a new method but with the same parameter and return type. Compiler doesn’t not pick up this kind of problem and it can lead to frustrating results. […]
Ten Most Common Errors in Java : Read More »