安装eclipse: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
不用安装,找到eclipse.exe文件双击就可以用。注意,eclipse是用java写的,所以要 安装jre或者jdk.
B:导入项目
在项目区域右键找到import
找到General,展开,并找到
Existing Projects into Workspace
点击next,然后选择你要导入的项目
运行点击代码处空白点击RUN AS 选择java Application即可运行
运算符
+ - * / % ++ --
加法+:
如 int a=4;
Int b=45;
System.out.println(a+b);//结果是49
注意:System.out.println(“HelloWorld”+a);//结果是HelloWorld4
System.out.println(a+“HelloWorld”+b);//结果是4HelloWorld45
*-:
只是做相应的操作
/ 取整操作:
int a=10;
Int b=3;
int c=10.0
System.out.println(a/b);//输出结果是3
System.out.println(c/b);//输出结果是3.33333333333333
%取余操作:
int a=5;
Int b=3;
System.out.println(a%b);//输出结果是2
扩展格式 如:
int i=0;
do{
Syso(“helloWorld”);
i++;
}while(i<100);
break的使用场景
switch语句中使用break;跳出switch语句
For循环中使用break,结束for循环
注意:break,continue不与switch语句和for语句使用时没有意义的,会报错。
continue的使用场景
for循环里,作用是结束本次循环,在它后面的语句本次不执行,直接到下次循环,继续下次循环。
随机数类 Random
//创建随机数对象
Random r=new Random();
//获取随机数值
int i=r.nextIn(10);//代表在[0,10)中随机取数