vote up 24 vote down star
2

For a long time, the only IDE I knew was the VB6 IDE, which is fairly outdated (ca. 1998) and not very feature-rich (unless you purchase third-party add-ons). You can set breakpoints and watches and there are other (now common-place) amenities, such as Intellisense.

So, when I saw Eclipse for the first time, I was amazed at how much the IDE could do for you (Generate Getters and Setters, the quick-fix feature, the Refactoring menu, etc.). Same thing when we moved to Visual Studio and I saw all the auto-generated Form Designer code for the first time.

These extras are great for productivity and just plain Getting Things Done, but I have to wonder, are we becoming too reliant on IDE's? How many programmers actually understand the rationale for the refactoring suggestions their IDE's give them? Do they need to understand why the IDE is suggesting they make a particular change to the code they just wrote?

I just wonder, especially as more and more productivity features get crammed into IDE's, how much thinking future programmers will actually be doing if the IDE starts shielding them from having to actually think things through before they code, instead of using the IDE as a crutch (i.e. "I can write crap code, because the IDE will refactor it for me").

Sometimes I find it very liberating to just fire up a text editor and code in that for awhile, to prove to myself that I still actually know the language I'm coding in.

What are your thoughts on this? Are super-friendly IDE's jammed-packed with productivity features ultimately harming programmers by hiding too many details of the language and shielding them from making real design decisions?

flag
See this great article from Salon a few years back. archive.salon.com/21st/feature/… – KevDog Sep 29 '08 at 0:32
1  
Great question +1! – Ben Hoffstein Sep 29 '08 at 1:20
I love the question and I've had very strong opinions about this for as long as I've been programming. But I can't help but feel that there is definetly no right answer, and everyone is going to have tons of opinions that are based on their own experience. No one can be an authority on this topic because it's 100% about preference. – devinb Jun 22 at 17:28
10  
:rolleyes: Are we eating too much processed food? Do our kids spend too much time watching TV? Do we rely too much on satnav's when driving? What about road signage? This is a really tabloid question that just gives a bunch of geeks the chance to show off how they are supposedly awesome with just vi and a vt100. Who cares? – U62 Jun 22 at 17:30

29 Answers

vote up 0 vote down

No not at all. IDE's are allowing us to write faster code than efficient one. The IDE's are just for telling that there are other things related to it, exactly same as facebook is telling you where are your friends and what are they doing. Market values for algorithm and creative ideas rather than static information tool.

link|flag
vote up 0 vote down

I wouldnt call a builder who uses his hammer all day long over dependent on the hammer... more like he is using his tool to leverage his efforts.

link|flag
vote up 0 vote down

Every time you see your IDE doing something for you, automatically - blame the language. If there's a robot (eclipse) who can perform manual tasks to save you the burden of typing - the language is at fault, as this job should be done by compiler.

(yes, it's relevant only for a part of eclipse automations, but still a big part).

link|flag
vote up 1 vote down

It is your choice wether you know what is going under the hood of IDE or you don't care.

Ignorant people are dependent, IDE is their master.

People who have know-how use IDE as tool.

link|flag
vote up -2 vote down

Programmers are expected to produce more and the new IDEs allow us do that. Eventually, programmers will be removed from the equation. Instead, systems will be generated from requirements documents and we'll all be out of a job.

I love intellisense...

link|flag
vote up 0 vote down

IDE completely influence the modern style of programming. Without auto generating getter setters, accessors for instance variables would be a theoretical ideal, which all practical programmers ignored, preferring raw public access to the variables. Without autocompletion we'd still write all our variables and method names in SMS style txt (like C's strcpy).

IDE's are really compilers which transform the terse language of our keystrokes into the more verbose and more readable programs that we have to maintain.

link|flag
vote up 1 vote down

I believe that it is important to at least have a general understanding of whats going on at the lower level. However I agree with others in that modern IDEs are simply the the next step in the evolution of software development. A bad programmer will be a bad programmer with or without and IDE.

link|flag
vote up 4 vote down

Judging from just StackOverflow, I'll say this: Hell yes.

For example, in the questions about C#'s 'var' usage, the dissenters bring up the fact that something along the lines of:

var something = DoStuff();

"That's not very readable, how do you know what 'something' is? Sure, the compiler knows, but how do YOU know?"

Then the pro-IDE people reply, "just hover over it in the IDE." That's just stupid.

link|flag
One example, and you rest your case? – Christopher Sep 29 '08 at 1:56
I never said I "rested my case". I felt that it was a perfect example. – TraumaPony Sep 29 '08 at 1:58
Of course you can solve that problem by using better variable and/or function naming. You don't even have to rely on the IDE! – Jason Baker Sep 29 '08 at 2:23
@Jason: I agree, but I think the point was that that the response from some people was "just let the IDE sort it out", rather than addressing the actual problem (i.e. bad variable names) – Mike Spross Sep 29 '08 at 2:35
Sure, you can, but you still won't know the type, unless you resort to Hungarian notation. – TraumaPony Sep 29 '08 at 2:35
show 3 more comments
vote up 0 vote down

Bad developers produce bad code regardless of how easy it is to do so. Good developers just get to do their job quicker and more effectively with good tools.

link|flag
vote up 1 vote down

Let's put it this way: in many languages there is a very high amount of what could be called accidental complexity—areas where the language is getting in the way of expressing the "business logic"/solving the problem at hand—and this is one areas where IDEs should be considered useful.

If an IDE is automatically generating code for you, then consider it an abstraction layer and welcome it. Of course, a la Joel, all abstractions are leaky, and one would be well off to know where their tools fail.

As far as a teaching tool, I was an intern this summer learning .NET/C# and 30-day trial of ReSharper taught me a whole bunch. Of course, as Dare Obansajo pointed out, we shouldn't blindly rely on ReSharper's suggestions, but as far as teaching me some constructs and keywords which lasted after my trial was over, ReSharper did very well.

link|flag
vote up 4 vote down

Charles Petzold (well known Windows programming author) gave a very interesting speech on this topic a few years back called Does Visual Studio Rot The Mind? Personally I favor IDEs for many of the reasons mentioned in this thread, but his talk is good food for thought.

link|flag
2  
As I recall Petzold's entire point was that intellisense was a bad thing that should go away. I think he's completely wrong, mostly because there's only so much a person can keep in their head, and intellisense makes room for more. – littlenag Sep 29 '08 at 2:10
I agree with you, but that wasn't his only point. I actually think intellisense frees up more mental capacity for actual problem-solving if that makes any sense. – Ben Hoffstein Sep 29 '08 at 2:19
With the size of base class libraries these days, I agree that Intellisense can be invaluable, but I can also understand Petzold's POV. It's like Joel's argument that programmers should know C, even if you never use it in your day-to-day. – Mike Spross Sep 29 '08 at 2:42
vote up 0 vote down

After some 13 years of using variolus IDEs I have come to the conclusion they actually hurt my productivity. Now I am not using them at all on any platform.

link|flag
vote up 1 vote down

I don't see why an IDE would be different from LaTeX: It lets you focus on the content of what you're writing while automating some details for you, but you can still write horrible crap.

link|flag
vote up 1 vote down

IDE's make things easier, some things IDE's do for you, could take 10 times longer for you to do by your self. In my opinion, IDE's really don't stop you from learning what you need to learn it just makes it easier for you to learn. The features they provide will prove useful during the learning experience and after the learning experience. IDEs for the win!

link|flag
vote up 2 vote down

Do you feel the same way about high-level languages targeted at managed, garbage-collecting runtimes? As opposed to, say, assembly?

link|flag
I liked assembly ;-) I agree that IDE's are useful and probably wouldn't want to code day-to-day without one. I just wonder about new programmers letting the IDE magic take care of things without understanding the fundamentals. Use the IDE, but at least have some idea of what it's doing. – Mike Spross Sep 29 '08 at 1:02
Well, the OP is not a newbie. I have a feeling that Mark's desire to go back to a more bare-metal approach to programming is due to a feeling of "I just don't feel like the technical genius that I am when I'm using tools that do so much for me.". I've been there, but I've decided life is too short. – Christopher Sep 29 '08 at 2:00
Sorry, Mike... Mark merely edited your question. You are the OP. – Christopher Sep 29 '08 at 2:42
No problem. I can't count how many times I've been called "Mark" by mistake in real life ;-) – Mike Spross Sep 29 '08 at 3:11
vote up 0 vote down

Here's one example of IDE dependence: Eclipse will automatically resolve imports using Ctrl-O. NetBeans doesn't have this feature, and even though I know what package contains System.out.println, I can never adopt NetBeans without Resolve Imports.

Refactoring, though, still requires higher-level knowledge. The mechanics are simply made easier by the IDE (which I find to be a good thing). Knowing how and when to apply refactoring still requires a smart programmer.

link|flag
vote up 7 vote down

Are carpenters too dependent on their hammers and saws? Would they be wrong to use the best hammer or saw possible?

link|flag
vote up 0 vote down

I'll just say that having a good set of tools cuts down on a lot of frustration.

link|flag
vote up 7 vote down

Here's the clincher for me.

"Java may be better than VB, but the Visual Studio IDE makes me so productive that the differences don't matter."

[Whether Java is actually better doesn't matter. The point was that they agreed that Java was better but refused to consider making changes, based entirely on the IDE.]

Their claim was that the IDE can make up for shortcomings with the language and environment.

From my POV, code lives a long time, but IDE's are fashion accessory and change every season. Apparently, the accessory defines the value, not the language, run-time, libraries or framework.

I don't agree with this POV. But it tells me that some people can be so wed to the IDE that long-term value of the code, environment, framework, etc., don't matter. And that's got to be a bad thing.

link|flag
vote up 9 vote down

That's rather a loaded question. I mean, "are we becoming dependent on our IDE's?" is very different to the question of "are we becoming TOO dependent on our IDE's?"

I'd say that there is some dependency on IDEs and that there has to be for productivity to meet what is expected of us. Tools are there to make our lives easier and there is little kudos or monetary value in knowing how to do things without the IDE. It might make us feel good that we know, but no one will thank us for letting them know that.

Becoming TOO dependent implies there's a point at which it is detrimental. That there is a level of dependency that is too much. I don't see how that could be unless the makers of the IDEs just stopped and withdrew them. But why would they? The only time I've experienced a side-effect of IDE dependency was moving from C# back to C++ development, but that was more because C++ IDEs haven't entirely caught up on all the features and it took mere seconds to get back into it.

The IDE is the next step in a long line of abstractions away from just writing 1s and 0s. From binary to assembly to C to C++ to python etc etc. If you're fine with using C++ or C#, then it would be somewhat hypocritical to believe that others shouldn't use the newly available abstractions whether they be new languages or new development environments.

So, I'd say, the answer is no. The only way you'd be seen as too dependent is by those who see merit in knowing how to do it without an IDE over just getting the job done.

link|flag
+1 For good answer....and because you had 9,999 and I wanted to see it go up :) – GMan Jun 29 at 4:46
@GMan: Thanks - on both counts :) – Jeff Yates Jun 29 at 15:02
vote up 2 vote down

What I would say is that if you can't imagine not having your IDE to write code, then you have become an addict. There is a great article in the Salon archive that I recommend for every one.The Dumbing Down of Programming

Check it out and then come back to the thread.

link|flag
While we're using clinical terms here: I would point out that addiction is different from dependence. It's only addiction when it's harmful. Are IDEs harmful? I'd argue no. – Jason Baker Sep 29 '08 at 1:08
As a corollary example, do kids who do their algebra, trig, and calculus with graphing calculators have the same fundamental understanding as those who graphed on paper? I'd argue no. – KevDog Sep 29 '08 at 3:38
@Kev: Reminds me of my short stint as a math tutor. Hard to teach someone a concept when they were previously just typing numbers into a formula program they ripped off of someone else's calculator ;-) – Mike Spross Sep 29 '08 at 3:51
vote up 0 vote down

For me the features in IDEs that hamper your understanding of a language or framework are those dealing with code generation (project templates, automatic dependency checking, etc). Beyond that I find that a good IDE is worth its weight in memory and load time just because it is much more efficient than a text editor and a straight command line debugger.

The wealth of code editing productivity tools (like function name completion, integrated documentation, etc), refactoring support, and excellent debugging tools in most modern debuggers make them a valuable tool that I sorely miss whenever I am forced to use a text editor and gdb at the command line.

link|flag
vote up 3 vote down

If an IDE can cut down on human errors and help productivity then that is great.

link|flag
vote up 2 vote down

Having an IDE doesn't significantly affect whether the code produced is "Crap" or not. Personally, I don't use an IDE, but programmers I work with do. It's sheerly a matter of preference and a matter of which tools we're used to.

If you can write good code with an IDE, you can do the same without, it just might take you time to become accustomed to using a set of CLI tools. And vice-versa.

On the other hand, you can write crappy, functional code without an IDE, the kind that if you're never reviewed, it will not fail until the worst possible time. And having an IDE will not magically make that problem go away.

It's not the tools themselves, but knowing how to put your tools to proper use that makes all the difference.

link|flag
Yes and no. IDEs make some kinds of bad code possible. An IDE can shore up verbose, overcomplicated code and make it manageable. Oceans of boilerplate? No problem. Superfluous classes? Easy to navigate. – the happy moron Sep 29 '08 at 1:42
vote up 7 vote down

I would say that this is true in some respects. Good programmers probably won't be harmed that much. However there are a lot of bad developers who can get by, simply by letting the IDE do all the work. With VS.Net, you could probably write an entire application without typing a line of code. Just draw out your interface, add some controls, connect some data sources, and you are done. It wouldn't be a very complex or good application, but it would probably work. I think that this is ultimately dangerous, especially when it comes to work actually being done for hire. You can get a lot of work done, without having any idea what you are doing. You don't know if there are any problems with the code, how it will perform under load, or how to fix it if something goes wrong.

Ultimately, the bad part, is that this leads to the idea from managers, and others, that code can be written by non-programmers, if you just give them a good enough tool set. I've worked in situations like this, and have to say that it never turns out good. Eventually these non-programmers run up against something that the IDE can't do for them, and they waste weeks trying to do something that a good developer could have done in a day. And the good developers end up supporting and maintaining the code written by the non-programmers.

link|flag
Heh, this was exactly my experience with VB4: I worked with some people who wrote some relatively sophisticated apps, which consisted entirely of wiring together some high-end VBX controls. When they had to actually write something, it was pretty horrible. And then they'd cut-n-paste it everywhere... I shouldn't complain though, since they paid me extremely well to re-write their bad stuff and make it perform, as well as convert their old RDO code to ADO. – TMN Jun 22 at 17:59
vote up 39 vote down

Back when I was a young programmer, I wore an onion on my belt because that was the style at the time and text editors??? LUUUUXXXXXURY. We were lucky to be allowed to sleep in the attic. Of course we called it an attic but really it was just an old prickly pine tree that we used to have to set fire to every night in order to stay warm. And then in morning, our dad used to beat us to death with a pile of old Emacs lisp macros and send us off to work 43 hours a day a mill for tuppence a month. Of course, you tell that to the kids these days and they wouldn't believe you.

link|flag
You may not get voted up to the top with this one - but it's a great answer! (Wink Wink - Nudge Nudge) – Doug L. Sep 29 '08 at 0:34
4  
You had fire? Luuuuuxxxxxury. – Graeme Perrow Sep 29 '08 at 0:40
Oh, we would have DREAMED to be beaten to death with a pile of old lisp macros. – Mark Biek Sep 29 '08 at 0:43
1  
Is this the world's first Simpsons/Monty Python crossover fan fiction? :-) – Dallas Sep 29 '08 at 0:59
Heh, I should really vote this down, but what the hey. It's funny and topical. – Jason Baker Sep 29 '08 at 1:11
show 7 more comments
vote up 3 vote down

Hell no. IDEs are jampacked full of features like Intellisense which means that I don't need to remember precisely what a function name is called, and can focus on the logic of my code instead. Jump to definition, find all references, and such like are all invaluable for me.

A good programmer can write good code in a text editor or in an IDE. It's just easier in the IDE. A bad programmer can write bad code in a text editor or in an IDE. They'll just write bad code faster in the IDE.

link|flag
vote up 4 vote down

I wouldn't say so. I know a few developers who couldn't write "Hello, World!" without their favorite IDE, but I think the vast majority use it as a productivity tool, not as a crutch.

link|flag
vote up 47 vote down

No. We're not. People can and do write crap code with and without an IDE. And I'd say that IDEs help me catch more of my crap code than they help me create it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.