forked from bjmashibing/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeBlockDemo.java
More file actions
60 lines (51 loc) · 1.76 KB
/
CodeBlockDemo.java
File metadata and controls
60 lines (51 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* @author: 马士兵教育
* @create: 2019-08-24 20:05
*/
/*
* 代码块: 使用{}括起来的一段代码叫做代码块
* 分类:
* 普通代码块:定义在方法中,使用{}括起来的代码叫做普通代码块
* 构造代码块:定义在类中的使用{}括起来的代码叫做构造代码块
* 注意:每次代码运行的时候回将构造代码块中的代码添加到构造方法的前面
* 构造代码块中的代码会添加到每一个构造方法中,当使用this(参数)的时候不会添加
* 静态代码块:使用static{}括起来的代码叫做静态代码块,在程序载入的时候优先执行
* 数据库连接等其他提前需要准备好的代码会放在static代码块
* 同步代码块:
* 在多线程的时候回使用,用来给共享空间进行加锁操作(后面讲)
* 执行顺序:静态代码块--》构造代码块(创建对象的时候才会用到)--》普通代码块
* */
public class CodeBlockDemo {
int a ;
int b;
static{
System.out.println("静态代码块");
}
public CodeBlockDemo(){
System.out.println("无参");
System.out.println("构造方法");
}
public CodeBlockDemo(int a){
this.a = a;
}
public CodeBlockDemo(int a,int b){
this(a);
this.b = b;
}
{
System.out.println("构造代码块");
}
public void test(){
System.out.println("test");
{
System.out.println("我应该是什么分类");
}
}
public static void main(String[] args) {
CodeBlockDemo codeBlockDemo = new CodeBlockDemo(1,2);
codeBlockDemo.test();
{
System.out.println("main");
}
}
}