在另一个问题中,Mark高度评价了ide,说“有些人仍然不知道”为什么“他们应该使用一个……”。作为一个使用vim进行编程的人,并且在大多数/所有同事都使用vim或emacs进行所有工作的环境中工作的人,ide的优势是什么?我为什么要用它?
我相信这对一些人来说是一个棘手的问题,我对开始一场论战不感兴趣,所以请只回复你认为基于ide的方法更好的原因。我对听到为什么我不应该使用IDE不感兴趣;我已经不用了。可以这么说,我感兴趣的是听取“栅栏的另一边”的意见。
如果您认为ide可能适合某些类型的工作,但不适合其他类型的工作,我也很想知道为什么。
这取决于你使用的语言,但在c#和Java中,我发现ide对以下方面有好处:
Quickly navigating to a type without needing to worry about namespace, project etc
Navigating to members by treating them as hyperlinks
Autocompletion when you can't remember the names of all members by heart
Automatic code generation
Refactoring (massive one)
Organise imports (automatically adding appropriate imports in Java, using directives in C#)
Warning-as-you-type (i.e. some errors don't even require a compile cycle)
Hovering over something to see the docs
Keeping a view of files, errors/warnings/console/unit tests etc and source code all on the screen at the same time in a useful way
Ease of running unit tests from the same window
Integrated debugging
Integrated source control
Navigating to where a compile-time error or run-time exception occurred directly from the error details.
Etc!
所有这些都节省时间。这些事情我可以手动完成,但会更痛苦:我宁愿编写代码。