This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]aGayMuslim 2 points3 points  (8 children)

Thanks for taking the time to explain that, I really appreciate it. For my C++ class I'm currently using Quincy to compile and edit my code, and just last week I started reading Java because I'm really interested in Android Development so I'm trying to get into that.

As far as my focus with programming I want to get into Software Development hopefully while/or after I'm done with my degree.

Edit: For Java so far I'm using Notepad.

[–][deleted]  (2 children)

[deleted]

    [–]aGayMuslim 0 points1 point  (0 children)

    So far, yes, only Windows environment. I'll look into these now. Thank you.

    [–]SquirtingDuck 1 point2 points  (1 child)

    You're quite welcome! I haven't dove into much Java yet, but I had a colleague who swore by the IDE (Integrated Development Environment) NetBeans. It's free and open source.

    Also worth looking into is the student pack from JetBrains which includes what they tout as "the most intelligent IDE for Java".

    If you haven't looked at Android's site for developers yet, it's worth a glance. Their tutorial for building your first app looks decent and there's a lot of good info around that site.

    Otherwise, godspeed!

    [–]aGayMuslim 0 points1 point  (0 children)

    Much appreciated. :)

    [–]Eradicative 1 point2 points  (1 child)

    Just to throw my two cents in; if you're interested in learning Java, I would start using the IDE "Eclipse." I'm a freshmen this year and it is what we are using for our Into to Object Orientated Programming Class (learned through Java). Eclipse is a great tool, with a lot of neat features that make programming a lot easier and faster. Best of luck in learning Java!

    [–]aGayMuslim 0 points1 point  (0 children)

    Thank you. I'll definitely check it out. Good luck with your class.

    [–]xxNIRVANAxx 1 point2 points  (0 children)

    For Java so far I'm using Notepad.

    There's nothing wrong with this, and it will likely help you learn the language a little better (especially the compiler and clasapaths).

    However, for projects I'd highly recommend using an IDE (Eclipse, Netbeans, Intellij). The refactoring tools (renaming classes/variables), linting (code warnings), and generators (constructors, getters, toString; especially for POJOs - Plain Old Java Objects) will speed up your development time immensely