r******r 发帖数: 700 | 1 这是不是 Java 比 C++ 越来越流行的主要原因之一?
比如说 debug, Linux 下做 c++ 开始,是不是很少有人用可视化的工具。而 Java 如
果不用 Eclipse, 开发效率可能要低 10 倍都不止。 |
d****i 发帖数: 4809 | 2 Eclipse有CDT,可以作为Linux下不用vi, emacs, gdb的一种GUI alternative,实际上
习惯了在Unix下编程的人还是习惯用vi, make, gdb这些东西。
【在 r******r 的大作中提到】 : 这是不是 Java 比 C++ 越来越流行的主要原因之一? : 比如说 debug, Linux 下做 c++ 开始,是不是很少有人用可视化的工具。而 Java 如 : 果不用 Eclipse, 开发效率可能要低 10 倍都不止。
|
c*********e 发帖数: 16335 | 3 不会吧,开发java的ide多了,jcreator,..bean,jdeveloper...
【在 r******r 的大作中提到】 : 这是不是 Java 比 C++ 越来越流行的主要原因之一? : 比如说 debug, Linux 下做 c++ 开始,是不是很少有人用可视化的工具。而 Java 如 : 果不用 Eclipse, 开发效率可能要低 10 倍都不止。
|
r********r 发帖数: 208 | 4 C++的IDE有code::block,做的也很好。Java不像C++那样需要兼容C,并且容易产生难
查(如内存泄露)的bug;而且JAVA是跨平台的(平台运行JVM,JVM上再运行Java). |
r******r 发帖数: 700 | 5 举个例子,比如,Java eclipse 里面,自动搜索并导入 package import 机制,比 C+
+ 里面的 include header 方式要简洁,方便很多倍。 大家有觉得没有? 不过,这主
要是因为语言本身的区别,Eclipse 所起的作用要小些。 |
J*******n 发帖数: 2901 | |
l*********s 发帖数: 5409 | 7 en, a lot of typings are automated away. Feel sleek
C+
【在 r******r 的大作中提到】 : 举个例子,比如,Java eclipse 里面,自动搜索并导入 package import 机制,比 C+ : + 里面的 include header 方式要简洁,方便很多倍。 大家有觉得没有? 不过,这主 : 要是因为语言本身的区别,Eclipse 所起的作用要小些。
|
y****e 发帖数: 23939 | 8 IntelliJ IDEA做java开发比Eclipse好用,很多Framework都支持
【在 r******r 的大作中提到】 : 这是不是 Java 比 C++ 越来越流行的主要原因之一? : 比如说 debug, Linux 下做 c++ 开始,是不是很少有人用可视化的工具。而 Java 如 : 果不用 Eclipse, 开发效率可能要低 10 倍都不止。
|
u****s 发帖数: 2186 | 9 IDE for C/C++ 推荐SlickEdit
在Unix/Linux上非常好用
【在 r********r 的大作中提到】 : C++的IDE有code::block,做的也很好。Java不像C++那样需要兼容C,并且容易产生难 : 查(如内存泄露)的bug;而且JAVA是跨平台的(平台运行JVM,JVM上再运行Java).
|
r******r 发帖数: 700 | 10 Eclipse 确实有个问题,就是如果你的 xml 文件比较大一些,打开这个文件,以及重
新切换到这个文件,非常慢。简直无法忍受。
所以,大些的 xml 文件,我都不得不用 vim 单独打开。
有知道这个问题的解决方案没有? 增加 JVM heap size 也没用。 |
|
|
g*****g 发帖数: 34805 | 11 If you are using Juno, it's a known issue. It'll be fine after the patch. I
was in the same boat.
http://hwellmann.blogspot.com/2012/12/eclipse-juno-patch-for-xm
【在 r******r 的大作中提到】 : Eclipse 确实有个问题,就是如果你的 xml 文件比较大一些,打开这个文件,以及重 : 新切换到这个文件,非常慢。简直无法忍受。 : 所以,大些的 xml 文件,我都不得不用 vim 单独打开。 : 有知道这个问题的解决方案没有? 增加 JVM heap size 也没用。
|
r******r 发帖数: 700 | 12 Exactly, but now it has become a dead link:
http://download.eclipse.org/eclipse/updates/junoSR1Patch-tmp
unavailable.
I
【在 g*****g 的大作中提到】 : If you are using Juno, it's a known issue. It'll be fine after the patch. I : was in the same boat. : http://hwellmann.blogspot.com/2012/12/eclipse-juno-patch-for-xm
|
g*****g 发帖数: 34805 | 13 SR 2 is out, update eclipse you get it.
【在 r******r 的大作中提到】 : Exactly, but now it has become a dead link: : http://download.eclipse.org/eclipse/updates/junoSR1Patch-tmp : unavailable. : : I
|
n*****3 发帖数: 1584 | 14 SlickEdit is good, but expensive for personal use.
【在 u****s 的大作中提到】 : IDE for C/C++ 推荐SlickEdit : 在Unix/Linux上非常好用
|
a******n 发帖数: 5925 | 15 re 一下这个, 以前一直用eclipse
最近刚开始用intellJ, 觉得好用。
【在 y****e 的大作中提到】 : IntelliJ IDEA做java开发比Eclipse好用,很多Framework都支持
|
a******n 发帖数: 5925 | 16 发现每次都必须在那个welcome screen上建新project或打开旧 projecct。。
不能disable 这个screen吗? 狗了半天没找到方法。
谁知道?
还有我右键java文件选intellJ也来到这个welcome screen...不让打开单个文件。。。
ft |
u****s 发帖数: 2186 | 17 我的一直是每次打开上次打开的project
Settings --> General --> Startup/Shutdown
Reopen last project on starup
【在 a******n 的大作中提到】 : 发现每次都必须在那个welcome screen上建新project或打开旧 projecct。。 : 不能disable 这个screen吗? 狗了半天没找到方法。 : 谁知道? : 还有我右键java文件选intellJ也来到这个welcome screen...不让打开单个文件。。。 : ft
|
r******r 发帖数: 700 | 18 There seems to be another annoying issue. Recently I switched to Eclipse
Java EE. After I created a working set, i.e. "test", I can't refresh all
projects under 'test' by clicking "test->refresh". In non-EE version, I can
always refresh all projects by clicking 'fresh' under the root working set
name.
Instead, I have to click individual projects in the working set and refresh
one by one.
Any way out here?
【在 g*****g 的大作中提到】 : SR 2 is out, update eclipse you get it.
|
g*****g 发帖数: 34805 | 19 You always press click, shift or control + click to high a list of projects,
like it's files in a folder, and right click to refresh.
can
refresh
【在 r******r 的大作中提到】 : There seems to be another annoying issue. Recently I switched to Eclipse : Java EE. After I created a working set, i.e. "test", I can't refresh all : projects under 'test' by clicking "test->refresh". In non-EE version, I can : always refresh all projects by clicking 'fresh' under the root working set : name. : Instead, I have to click individual projects in the working set and refresh : one by one. : Any way out here?
|
r******r 发帖数: 700 | 20 Really works, though not as good as the non-EE version.
Thanks.
projects,
【在 g*****g 的大作中提到】 : You always press click, shift or control + click to high a list of projects, : like it's files in a folder, and right click to refresh. : : can : refresh
|
a******n 发帖数: 5925 | 21 我也是这样设的呀
但是习惯project不用的时候都close了
Intellij一全close马上就进那个welcome screen了
好像原因是intellJ 当前只显示一个project?
不像eclipse那样左边一排全是project...同时打开好几个相互考来考去
不过IntellJ的editor做是真是好, 看着舒服
【在 u****s 的大作中提到】 : 我的一直是每次打开上次打开的project : Settings --> General --> Startup/Shutdown : Reopen last project on starup
|