【二】基本数据类型和Eclipse使用
2019-01-03 本文已影响10人
xxxxxxxxx_ios
1.基本数据类型(4类8种)
基本数据类型注意事项:
1.整数默认是int类型,定义long类型需要加l或者L标识,建议加L
2.浮点数默认是double类型,定义float类型需要添加f或者F,建议加F.
2.强制类型转换
-
隐式转换
隐式转换 -
显式转换
显式转换
3.Eclipse使用介绍
-
Eclipse工作空间的基本配置
A:行号的显示和隐藏
显示:在代码区域的最左边的空白区域,右键 -- Show Line Numbers即可。
隐藏:把上面的动作再做一次。
B:字体大小及颜色
a:Java代码区域的字体大小和颜色:
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Java -- Java Edit Text Font
b:控制台
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Debug -- Console font
c:其他文件
window -- Preferences -- General -- Appearance -- Colors And Fonts -- Basic -- Text Font
C:窗体给弄乱了,怎么办?
window -- Perspective -- Reset Perspective
D:控制台找不到了,怎么办?
Window--Show View—Console -
辅助键
内容辅助键 alt+/
main 然后alt+/
syso 然后alt+/ -
快捷键
注释
单行 选中内容,ctrl+/, 再来一次取消
多行 选中内容,ctrl+shift+/, ctrl+shift+
格式化 ctrl+shift+f