1.编写常用的快捷键和Dos命令
常用的快捷键
复制 ctrl+c 粘贴 ctrl+v 剪切 ctrl+x
撤销 ctrl+z 恢复 ctrl+y 全选 ctrl+a
快速回到桌面 win+d 快速切换用户 win+l
快速运行 win+r 快速打开我的电脑 win+e
常用的dos命令
创建目录 md 删除目录 rd 查看目录下的文件和文件夹 dir
切换目录 cd 回到上级目录 cd.. 回到根目录 cd/
删除文件 del 删除文件夹包括其中的文件 rd /q /s
2.第一个HelloWorld敲10遍(使用记事本notepad)
1.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
2.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
3.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
4.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
5.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
6.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
7.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World"):
}
}
8.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
9.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
10.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
4.配置QQ的环境变量
已成功完成
5.简述注释的作用及分类,并在HelloWorld案例中添加注释
注释的作用
便于理清思路,便于理解代码,可以让别人更易看懂,还能调试代码
注释的分类
单行注释 //
多行注释 /* */
文档注释
/**
类名 HelloWorld
*/
public class HelloWorld {
/*
main方法,jvm执行类的方法入口
*/
public static void main(String[] args) { //main方法
System.out.println(""):// 输出语句
}
}
6.简述什么是java中的关键字,关键字的特点及常见的关键字
在java中被赋予特殊含义的英文单词
特点是不能被标识符所用
常见的关键字有:public class static void goto const
7.简述什么是标识符,标识符的组成,注意事项及命名规则
标识符就是java中类、接口、变量等的名字
标识符由大小写英文,数字和_、$组成
注意事项是不用以数字开头,不能使用关键字,区分大小写
命名规则:类名、接口首字母大写,当由多个单词组成,每一个单词的首字母都大写。方法名和变量名首字母小写,当由多个单词组成时,从第二个单词开始,每个单词的首字母大写。常量每一个字母都大写,当由多个字母组成时,每个字母都大写,并且字母之间用下划线隔开
8.金山打字通所有单词敲两遍.
已经敲完
补充:(预习并完成)
1)定义int类型String类型的变量 并打印
public class HomeWork1 {
public static void main(String[] args) {
int a = 1;
String b = "lalala";
System.out.println("a="+a+" "+"b="+b):
}
}
2)有两个int类型数 x = 10; y =20; 使用if判断, 打印出来两个值中较大的值.
public class HomeWork3 {
public static void main(String[] args) {
int x = 10,y = 20;
if(x<y} {
System.out.println("较大的值:"+y);
}else {
System.out.println("较大的值:"+x);
}
}
}
3) int x = 10; int y = 20; 交换两个值,使x = 20, y = 10;
public class HomeWork3 {
public static void main(String[] args) {
int x = 10,y=20,c;
c=x;
x=y;
y=c;
System.out.println("x="+x+" "+"y="+y);
x=x+y;
y=x-y;
x=x-y;
System.out.println("x="+x+" "+"y="+y);
}
}
4) 定义一个方法求两个数的和 返回值类型为int类型 参数列表为 int x , int y 主方法中打印返回的int结果
public class HomeWork4 {
public static void main(String[] args) {
System.out.println("两个数的和是:"+getSum(10,20));
}
public static int getSUm(int a ,int b) {
return a+b;
}
}