Page 2 of 2 [ 26 posts ]  Go to page Previous  1, 2

solinoure
Sea Gull
Sea Gull

User avatar

Joined: 16 Feb 2009
Age: 56
Gender: Male
Posts: 211
Location: Toontown, Texas

03 Mar 2010, 4:47 pm

any suggestions for a good development suite for writing all this C, C++ and Java?


_________________
The river tells no lies - but, the dishonest man, standing near, will hear them. - Oma
I am not responsible for what I say - you are! I am only responsible for the words I speak. - me


QuantumCowboy
Veteran
Veteran

User avatar

Joined: 13 May 2007
Age: 46
Gender: Male
Posts: 897
Location: (1/√2)|0> + (1/√2)|1>

03 Mar 2010, 5:22 pm

[quote="solinoure"]any suggestions for a good development suite for writing all this C, C++ and Java?[/quote

Emacs.


_________________
The ket always seems to psi over its own indeterminacy.


MyFutureSelfnMe
Veteran
Veteran

User avatar

Joined: 26 Feb 2010
Age: 46
Gender: Male
Posts: 1,385

03 Mar 2010, 7:10 pm

Emacs is great if you don't mind a learning curve that looks like the side of a cliff, an unbelievable amount of swearing in addition to learning the language you're writing in, and you enjoy text mode and a potential lack of features that exist in a serious IDE.

Otherwise, if you use Linux, gcc is your compiler, I recommend SlickEdit.

If you use Windows, don't listen to the open source guys, fork out for Visual Studio 2008. I believe there's a free version these days.



solinoure
Sea Gull
Sea Gull

User avatar

Joined: 16 Feb 2009
Age: 56
Gender: Male
Posts: 211
Location: Toontown, Texas

03 Mar 2010, 7:22 pm

So far I have downloaded:
Eclipse
Gambas2
KDevelop4

they all look very cool and Visual Studio like.


_________________
The river tells no lies - but, the dishonest man, standing near, will hear them. - Oma
I am not responsible for what I say - you are! I am only responsible for the words I speak. - me


psychohist
Veteran
Veteran

User avatar

Joined: 23 Feb 2010
Age: 65
Gender: Male
Posts: 1,623
Location: Somerville, MA, USA

03 Mar 2010, 7:27 pm

solinoure wrote:
any suggestions for a good development suite for writing all this C, C++ and Java?

gcc and teco.

Okay, just kidding about teco. However, I do find that vi is fine for learning on linux - or use whatever simple text editing program your version of linux comes with. Emacs is extremely powerful if you can afford to spend 8 hours a day at it to maintain your proficiency.

For Java, IDEA is far superior to Eclipse if you are willing to shell out money.



MyFutureSelfnMe
Veteran
Veteran

User avatar

Joined: 26 Feb 2010
Age: 46
Gender: Male
Posts: 1,385

03 Mar 2010, 7:47 pm

A GUI is the way to go, and the software he already found is just fine.



solinoure
Sea Gull
Sea Gull

User avatar

Joined: 16 Feb 2009
Age: 56
Gender: Male
Posts: 211
Location: Toontown, Texas

03 Mar 2010, 7:57 pm

...and you can't beat the price.


_________________
The river tells no lies - but, the dishonest man, standing near, will hear them. - Oma
I am not responsible for what I say - you are! I am only responsible for the words I speak. - me


Blake_be_cool
Veteran
Veteran

User avatar

Joined: 6 May 2008
Age: 29
Gender: Male
Posts: 860
Location: Australia, NSW, Sydney

11 Jul 2010, 10:15 pm

What is the difference between C++ and C++ Visual Studio, I've notice on my schools computer that C++VS you just drag your objects on like VB6.


_________________
"Not everything that steps out of line, and thus 'abnormal', must necessarily be 'inferior'."
- Hans Asperger (1938)


MDM
Snowy Owl
Snowy Owl

User avatar

Joined: 30 May 2010
Age: 31
Gender: Male
Posts: 126
Location: Montana, USA

11 Jul 2010, 10:32 pm

I prefer C over C++ just because I find in large projects C++ read. Not that I'm against it. I prefer low level work often, and I understand that C++ can do just as much as C and some, but I just feel more in-controll with just plain ol' C.

Everything changes of course if I'm doing a GUI application. In which case C becomes the crappiest language alive.

I generally stick with LLVM and GCC for my C based language stuff.



mcg
Veteran
Veteran

User avatar

Joined: 26 Jan 2010
Age: 35
Gender: Male
Posts: 538
Location: Sacramento

12 Jul 2010, 1:18 am

Blake_be_cool wrote:
What is the difference between C++ and C++ Visual Studio, I've notice on my schools computer that C++VS you just drag your objects on like VB6.

Visual studio is an IDE. There is no important functional differences between Microsoft's C++ compiler and other C++ compilers, other than that Microsoft's compiler can also make .NET executables in addition to native code. Visual Studio does let you visually design interfaces for Windows Forms (.NET) or MFC if you want to use unmanaged code, and it will automatically create all the classes you need. You can still link with non-Microsoft libraries though like wxWidgets or QT.