Eclipse 新手,使用 PHP 并需要技巧
我正在从 DW 切换到 eclipse(实际上我仍然对是否升级到 netbeans 持怀疑态度),因为听到了有关它的好消息,也因为我将尽快转向 Linux。好吧,我仍然使用 Wind 7 64 位,只是为了习惯 eclipse,我下载了它,但看到了这个:它创建了一个名为 .settings 的文件夹和两个名为 buildpath 和 .project 的文件。当我使用 DW 时,它还创建了 _notes,我一直讨厌它并且还禁用了它。这在 Eclipse 中怎么可能?它们有用吗?有什么用?
另外,如果有人可以向我推荐一个很棒的 Eclipse 教程,那就太好了,我有点喜欢它的环境,但需要获得更多有关此的文档。
感谢所有为此做出贡献的人,也可能会帮助其他人(不久前 stackoverflow 对我很有帮助)
:)
I´m switching from DW to eclipse (actually I´m still in doubt on cahnging to netbeans) because heard good thing about it and also because I´m going to turn to linux asap. Well I´m still in Wind 7 64bits, just to get used to eclipse, I downloaded it, but saw this: it created a folder called .settings and two files called buildpath and .project. As I used DW it also created _notes which I always hated it and also disabled it. How can this be possible in eclipse and are they useful, what for?.
Also if someone could recommend me a great eclipse tutorial, would be great, I´m kind of liking it´s enviornment, but need to get more documentation about this.
Thanks to everyone who contributes with this, might help others as well (well stackoverflow is very helpfull for me a while ago)
:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先定义目的,为什么不需要这些文件。
如果您使用 cvs-system 编写代码,则可以添加这些文件以忽略。
顺便说一句,这些文件很有用,因为:
.project - 定义项目特定的属性,覆盖工作区特定的属性和全局属性
buildpath - 定义项目中将包含哪些库。
此外,当您共享项目时,这两个文件都很有用。这样每个使用 eclipse 的人都可以导入您的项目并获取您的所有属性。
PS 简单的 Eclipse 教程可以在此处找到。
First define the purpose, why you don't need these files.
If you are using cvs-system for code you can add these files to ignore.
BTW, these files are useful, because:
.project - defines project-specific properties that override workspace-specific and global properties
buildpath - defines what libraries will be included in your project.
Also, both of these files useful when you share your project. In that way everyone who using eclipse can import your project and get all your properties.
P.S. Simple eclipse tutorial can be found here.