c++版eclipse相关设置

自动提示:
打开终端:输入:$ gcc- v
得到类似的:gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5)
很容易就看到你当前使用的版本了。
启动Eclipse.进入:Windows-->Preferences-->C/C++找到Environment。增加两个变量:
CPLUS_INCLUDE_PATH: /usr/include/c++/4.4.5(我的gcc版本)
C_INCLUDE_PATH: /usr/include
接下来新建一个c project.编写代码的时候,当敲入'.'的时候就会自动弹出可备用的代码,

编译前自动保存:
Window->Preference->General->Workspace->save automaticall before build

改变高亮选中text颜色:
Window->Preferences->General->Editors->Annotations->C/C++ Occurrences

修改快捷键:
Window->Preferences->General->keys

显示行号
Window->Preferences->Editors->Text Editors->show line num

悬浮背影色修改
Window->Preferences->C/C++->Editor->SourceHoverBackground

修改字体大小
Window->Preferences->General->Apperance->Colors and Fonts

debug时鼠标悬浮时查看变量值改背景色(je真好,有分就可以让牛人帮忙解决问题,哈哈)
桌面右击 -》 更改桌面背景 -》主题 -》 自定义 -》颜色 -》工具提示

你可能感兴趣的:(eclipse,C++,c,C#,gcc)