|
|
|
|
|
by NotSwift
1801 days ago
|
|
A good IDE can help tremendously in developing software. It can write a lot of the boiler-plate code that you consider bloat. With a statically typed language the IDE and the compiler have a lot of information about your program. They can help finding and correcting errors. Good IDE's warn instantly when you are using an unknown function/method and they can even suggest how you could correct it. Also because the IDE knows all the types of variables it is able to show the source code for the corresponding classes and/or the official documentation for these classes. With loosely typed languages, the IDE and the compiler do not have much information about your objects, so they cannot really help very much. With loosely typed languages, many problems in the code will become apparent only when the code is running in production. I am probably old-fashioned, but there still some customers that really dislike problems in production systems. |
|