4

Java is perfect if you are a narcissistic egomaniac with OCD who has to declare a data type for every variable. Back to python

Comments
  • 7
    Yupp, that's me. And lack of explicit types is ine of the reasons py is not for me 😁
  • 9
    Whut
    Explicit types are awesome, they enforce stuff that the compiler can check.
    I rather hate it when a long, complicated Python program comes crashing down due to a type error halfway through the code.
  • 0
    Welcome JavaScript. Perfect for everyone. Terrible for just as many people.
  • 3
    And that's why beginners should rather learn Pascal than Python.
  • 7
    If data types are your main concern i am going to assume you are either inexperienced or just plain bad.

    Also you can use var keyword
  • 3
    Awww I remember when I started to code as well :) oh shit! That can be my week dev rant insult!
  • 0
    @ganjaman var in java??
  • 0
    @ganjaman that's like java 10,our codebase mostly in 8.
  • 1
  • 0
    @divine-codez why does it bother you so much? The main advantage is that you can control data flow at compile time instead of putting a load of checks on the data sink/data factory later. Plus, execution time is lesser compared to that of scripts.
Add Comment