vote up 1 vote down star

What is a programming environment?

flag
You might have better luck researching the question if you spelt it correctly. – Paul Tomblin Feb 18 at 2:49
I don't see why the question is downvoted: spelling may be bad but the OP may not be familiar with English. – Renaud Bompuis Feb 18 at 3:06
Perhaps the downvote has nothing to do with the spelling. Perhaps the downvote is because the answer is trivially available on Wikipedia. – S.Lott Feb 18 at 3:09
If you live in China, Wikipedia is often not an option. – Renaud Bompuis Feb 18 at 3:11
This has been asked before, a few times. – George Stocker Feb 19 at 12:27

3 Answers

vote up 6 vote down check

A Programming Environment is the set of tools related to a particular language that help you work in that language.

For instance, the Programming Environment for .Net languages is composed of:

  • the IDE (Integrated Development Environment), where you enter your code, get nice syntax highlighting, code snippets, shortcuts, etc
  • a graphical designer where you can drag & drop controls for building User Interfaces.
  • meaningful error messages which you can click to view an explanation of the error and possible help on how to fix it.
  • debuggers that allow you to inspect your data while the code is running to find out
  • integrated help with context-sensitive information so you can quickly learn about things you don't know.

A good programming environment is one that help you be more productive (get better code done faster). A bad programming environment is one that makes you waste a lot of time to achieve your goals.

For instance, Visual Studio and Eclipse are good programming environments: they try hard to give you access to all the tools you need to work properly.

On the other hand, being able to only use Windows Notepad and a command line compiler is not such a great programming environment: doing your work is possible, but it's just harder as the tools don't help you a lot.

You can read more about this subject on Wikipedia's page on Integrated Environments.

link|flag
vote up 1 vote down

Emacs is a programming environment. :) You can edit, compile and (as I've recently discovered, and been blown away by) debug all without leaving Emacs.

link|flag
I am not asking for names of programming enviornments, I am asking what they are. – unknown (yahoo) Feb 18 at 4:06
+1: for trying to help by providing an example. -1 to @unknown (yahoo) for arguing against someone taking time to help. – S.Lott Feb 18 at 10:53
vote up 0 vote down

I have nothing to say.

link|flag
It may be relevant to what the OP really wants to know: en.wikipedia.org/wiki/Development_environment/… – Nick Presta Feb 18 at 2:54
Everyone can google, people come here for answers, not being told to RTFM. – Renaud Bompuis Feb 18 at 3:07
@Renaud Bompuis: While true, I can't provide a useful answer until I know what they read in the manual and what -- specific -- questions they have. Questions this vague can't be answered here any better than on Wikipedia. – S.Lott Feb 18 at 3:11
@Renaud I would agree, but this question is so simple and so without context he really probably should JFGI to get the basics and then ask a more developed question. – Schwern Feb 18 at 3:12
1  
@unknown (yahoo): Disagree. Here's the standard we use on SO. We look at stackoverflow.com/search?q=programming+environment/… and compare those questions with yours. Those questions all seem specific. Yours does not match those very well. – S.Lott Feb 18 at 10:52
show 3 more comments

Your Answer

Get an OpenID
or

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