Integrated development environment (IDE)

Discussion in 'Plugin Development' started by es359, Oct 8, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    es359

    Random question. What IDE's does everyone use? I'm curious to see what's out there and what other people use.
     
  2. es359 This question has been asked before. Many times, most likely. Seach "most popular Java IDEs" on google, and you'll get basically the same answers you would on here.
     
  3. Offline

    Shaggy67

    Personally, I use NetBeans because that's what our development team at work uses. However, I can say that when I'm interviewing new developers, almost all of them use/prefer Eclipse.
     
  4. Offline

    es359

    I used to use Netbeans, but I thought it was to much work.
     
  5. Offline

    Marten Mooij

    I use Eclipse... because i'm "old school"?
     
  6. Offline

    fireblast709

    The most mainstream IDEs would be IntelliJ, Netbeans and Eclipse
     
    es359 and AdamQpzm like this.
  7. Offline

    RandomPanda30

    It's all just about preference. Personally, I would try Eclipse first since most tutorials are done in Eclipse. Then switch if you feel more confident. However, Eclipse has become my home really for a coding IDE sooo yeah, I chose my IDE ;3
     
  8. Offline

    mythbusterma

    Eclipse if you're starting, and IDEA once you actually know what you're doing. IDEA is just so much smarter.
     
    GeorgeeeHD, Hawktasard and es359 like this.
  9. Offline

    Shaggy67

    Nah, old school would have been saying that you prefer to use "vi".
     
  10. mythbusterma Or Notepad++ if you're starting, IDEA once you know what you're doing.
     
  11. Offline

    mythbusterma

    AdamQpzm

    I really hate NP++ though. It's incredibly obnoxious sometimes.
     
  12. mythbusterma Well there are similar alternatives available :p NP++ has always been fine for me, though.
     
  13. Offline

    stoneminer02

    I use IntelliJ IDEA by Jetbrains and Eclipse by * Insert funny creator name here *
     
  14. Eclipse Foundation?
     
  15. Offline

    rbrick

    I use Vim and emacs
     
  16. Offline

    McLive

    Eclipse
     
  17. Offline

    ZeusAllMighty11


    While it may seem nice to start them off using javac and notepad++.. just tell them to use an IDE. It's very rare you find someone that requires you to not use an IDE to write a program.




    I use IntelliJ Ultimate myself.
     
  18. ZeusAllMighty11 I find it's easier to learn the importance of certain aspects when they're not done for you. I'll admit, I've never seen anybody who needs to start without an IDE, I just think that it's better to start like that.
     
  19. Offline

    ZeusAllMighty11

    AdamQpzm

    Sure, I agree javac is good to know :D
     
    AdamQpzm likes this.
  20. Offline

    Konato_K

    I do not use any IDE, I use a text editor with syntax highlighting and some shell scripts to make compilation and the jar file way faster than doing "javac -cp bukkit.jar" the whole time
     
  21. Offline

    RingOfStorms

    After years of using eclipse I switched to IDEA just from curiosity and have been using it for just under six months or so. Eclipse and IDEA are both incredibly good and they both come with strengths and weaknesses. I'd say eclipse is the the best for beginners as tutorials are done in it and really it is laid out a bit more user friendly. IDEA is a pretty good alternative and has much smarter auto fill recommendations which can speed up your coding quite a bit.

    Since I've been in IDEA there are a couple of things that have incredibly bothered me though after using eclipse for so long. In IDEA...
    • There are no realtime compile errors in classes that aren't open. This is something that eclipse does extremely well and is enough of a drawback to stay with eclipse for the long run.
    • The importing on IDEA is incredibly not intuitive. Eclipse handles mass import changes much more efficiently and is more user friendly. While IDEA has automatic importing, it won't remove incorrect imports (for example when nms updates, you literally have to manually remove every single import by hand in IDEA) and it is a much much slower process going to each class 1 by 1.
    Other than those two things IDEA is better than eclipse in just about every way, but as I said, almost not worth it just due to those.
     
    AdamQpzm likes this.
Thread Status:
Not open for further replies.

Share This Page