Making Eclipse behave like Visual Studio

后端 未结 4 1757
清酒与你
清酒与你 2021-02-01 12:04

I\'m doing some Android development, and I much prefer Visual Studio, but I\'ll have to use Eclipse for this.

Has anyone made a tool which can make Eclipse<

相关标签:
4条回答
  • 2021-02-01 12:45

    There are also other choices for Java IDEs. You've obviously found Eclipse, but you also may want to check out IntelliJ and NetBeans. IntelliJ is not free, but has a 30 day evaluation period and a Visual Studio key map :)

    Shop around, find one that you like and start to use it heavily. They are all very good IDEs, and I'm sure once you use one for a while you'll get comfortable with it.

    0 讨论(0)
  • 2021-02-01 12:51

    If you start typing the name of any class/variable visible in the current scope and hit Ctrl+Space, it'll bring down the autocompletion.

    By default, tab is used to move around autocompleted function call arguments.

    0 讨论(0)
  • 2021-02-01 12:58

    I'm gonna play devils advocate here and say that forcing you to use this.myString is actually much safer than just myString. myString could be defined locally (in the method) or in the class as a private member. I sometimes think Visual Studio is a bit cavalier about this. In the sample you mention (I saw the video but it was illegible) where is myString scoped?

    0 讨论(0)
  • 2021-02-01 13:08

    Have you tried using the Visual Studio keybindings available in Eclipse Ganymede (3.4)?

    (You may want to know that "IntelliSense" is a Visual Studio-term, an probably unknown to anyone without Visual Studio-experience. "Autocompletion" is probably a more widely used term.)

    0 讨论(0)
提交回复
热议问题