What common mistakes in java have you made or see other people making? | Sololearn: Learn to code for FREE!
Nowy kurs! Każdy programista powinien nauczyć się Generative AI!
WyprĆ³buj darmową lekcję
+ 5

What common mistakes in java have you made or see other people making?

14th Apr 2017, 4:15 PM
Thanh Le
Thanh Le - avatar
7 odpowiedzi
+ 20
String a = "123"; if (a=="123") { ... } ..........
14th Apr 2017, 4:18 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 11
Missing ;s. Sometimes missing brackets {}. Often syntax mistakes with switches. But most generally just logic errors.
14th Apr 2017, 4:17 PM
J.G.
J.G. - avatar
+ 7
Programming Standards. * Using public instead of protected/private (when necessary) * Bad naming conventions * Lack of error handling * Redundancies, example: if(x==3) return true; else return false; instead of: return x==3;
14th Apr 2017, 4:58 PM
Rrestoring faith
Rrestoring faith - avatar
+ 4
missing ;
14th Apr 2017, 4:52 PM
ą¤¦ą„‡ą¤µą„‡ą¤‚ą¤¦ą„ą¤° ą¤®ą¤¹ą¤¾ą¤œą¤Ø (Devender)
ą¤¦ą„‡ą¤µą„‡ą¤‚ą¤¦ą„ą¤° ą¤®ą¤¹ą¤¾ą¤œą¤Ø (Devender) - avatar
+ 4
forget to import the class ._.
14th Apr 2017, 6:47 PM
Yanothai Chaitawat
Yanothai Chaitawat - avatar
+ 2
forget to import required package
20th Apr 2017, 10:36 AM
Mayur Chaudhari
Mayur Chaudhari - avatar
+ 1
Forgetting to add capital letters where necessary. šŸ˜…
15th Apr 2017, 8:22 PM
Bonita S.
Bonita S. - avatar