一、java基础
1.1 JAVAEE的13个规范
JAVA EE的十三种规范
二、java基础语法
2.1 final
1.被final修饰的类不可以被继承
2.被final修饰的方法不可以被重写
3.被final修饰的变量不可以被改变
2.2 static
被static修饰的方法和变量是和这个类关联在一起的,被类的所有实例对象所共享
2.3 异常
“抓抛”模型:
1.抛:异常的生成方式
1.1 自动抛:程序执行过程中一旦出现异常,就会在出现异常的代码处,自动生成对应异常类的对象并抛出.
1.2 手动抛:程序执行过程中,在不满足指定条件的情况下,我们主动使用“throw + 异常类的对象”方式,手动将异常类的对象抛出
2.抓:异常的处理方式
2.1 自己抓:try-catch-finally
2.2 交给别人抓:throws
异常的两种处理方式:1.try-chatch-finally 2.throws
/*try {
可能出现异常的代码全部包在try的大括号里
}catch (Exception e){
e.printStackTrace(); // 打印详细异常信息(常用)
e.getMessage();
}finally {
一定要执行的语句,eg:关闭资源等
}*/
public class ExceptionHandleTest {
/*public static void main(String[] args) throws Exception {
try {
method(); // 方法调用过程中,main()方法是最后一层,必须在main()方法中处理其他方法throws上来的异常
}catch(){
}finally{
}
}
public static void method() throws Exception{
可能出现异常的代码 // 将出现的异常throws给调用method方法的方法去
}*/
}
手动抛出异常
在实际开发中,如果出现不满足具体场景的代码问题,有必要手动抛出一个指定类型的异常对象
比如:有一个Student类,有个id属性,要求不能为负数。这种场景从java层面来说没有问题,因为变量可以为负数,但是在具体的开发场景中就不行了,因此要根据实际开发场景要求,手动抛出异常
1.手动抛出运行时异常,可以不做处理
public class ExceptionHandleTest {
public static void main(String[] args) throws Exception {
Student student = new Student();
student.regist(-10);
}
}
class Student {
private int id;
public void regist(int id) {
if(id >= 0){
this.id = id;
}else{
throw new RuntimeException("输入的id为负数");
}
}
}
2.手动抛出的不是运行时异常,必须进行处理文章来源:https://www.toymoban.com/news/detail-645273.html
public class ExceptionHandleTest {
public static void main(String[] args) throws Exception {
Student student = new Student();
student.regist(-10);
}
}
class Student {
private int id;
public void regist(int id) {
if(id >= 0){
this.id = id;
}else{
try {
throw new Exception("输入的id为负数");
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
三、java基础用法
3.1 时间格式化
public class DateTest {
public static void main(String[] args) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat();
simpleDateFormat.applyPattern("yyyy-MM-dd HH:mm:ss");
System.out.println(simpleDateFormat.format(new Date()));
}
}
sout:2023-07-30 16:38:50
3.2 java计时
java计时文章来源地址https://www.toymoban.com/news/detail-645273.html
到了这里,关于java_基础语法及用法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!