1
1
##问题
2
2
3
- <<<<<<< HEAD
4
- 有一个 try/catch 代码块,其中包含一个打印语句。finally代码块总会被调用么?
5
-
6
- 示例:
7
- =======
8
3
有一个 try/catch 代码块,其中包含一个打印语句。finally代码块总会被执行么?
9
4
10
5
示例:
11
6
12
- >>>>>>> 28e7878b6828743ba520b991713ff3e6a1fc0c22
13
7
``` java
14
8
try {
15
9
something();
16
10
return success;
17
11
}
18
- catch (Exception e) {
12
+ catch (Exception e) {
19
13
return failure;
20
14
}
21
15
finally {
@@ -25,34 +19,23 @@ finally {
25
19
26
20
##回答
27
21
28
- 1 . ``` finally ``` 将会被调用。
29
- <<<<<<< HEAD
30
- 只有以下情况 ``` finally ``` 不会被调用:
31
- =======
32
-
22
+ 1 . ``` finally ``` 将会被调用。
33
23
只有以下情况 ``` finally ``` 不会被调用:
34
- >>>>>>> 28e7878b6828743ba520b991713ff3e6a1fc0c22
35
24
36
25
- 当你使用 ``` System.exit() ``` 后
37
26
- 其他线程干扰了现在运行的线程(通过 ``` interrupt ``` 方法)
38
27
- 如果 JVM 已经“撞毁”了
39
28
40
- <<<<<<< HEAD
41
29
Answered by [ Jodonnell] ( http://stackoverflow.com/users/4223/jodonnell ) , edited by [ jpaugh] ( http://stackoverflow.com/users/712526/jpaugh ) .
42
30
43
31
2 . //示例代码
44
- =======
45
- Answered by [ Jodonnell] ( http://stackoverflow.com/users/4223/jodonnell ) ,edited by [ jpaugh] ( http://stackoverflow.com/users/712526/jpaugh ) .
46
32
47
- 2 . //示例代码
48
-
49
- >>>>>>> 28e7878b6828743ba520b991713ff3e6a1fc0c22
50
33
``` java
51
34
class Test
52
35
{
53
- public static void main (String args [])
54
- {
55
- System . out. println(Test . test());
36
+ public static void main (String args [])
37
+ {
38
+ System . out. println(Test . test());
56
39
}
57
40
58
41
public static int test ()
@@ -66,22 +49,13 @@ class Test
66
49
}
67
50
}
68
51
```
69
- <<<<<<< HEAD
70
- 输出:
71
- =======
72
52
输出:
73
53
74
- >>>>>>> 28e7878b6828743ba520b991713ff3e6a1fc0c22
75
54
``` java
76
- finally trumps return .
55
+ finally trumps return .
77
56
0
78
57
```
79
- <<<<<<< HEAD
80
- Answered by [ Kevin] ( http://stackoverflow.com/users/1058366/kevin )
81
- =======
82
-
83
58
Answered by [ Kevin] ( http://stackoverflow.com/users/1058366/kevin )
84
- >>>>>>> 28e7878b6828743ba520b991713ff3e6a1fc0c22
85
59
86
60
---
87
- 原文链接:http://stackoverflow.com/questions/65035/does-finally-always-execute-in-java?page=1&tab=votes#tab-top
61
+ 原文链接:http://stackoverflow.com/questions/65035/does-finally-always-execute-in-java?page=1&tab=votes#tab-top
0 commit comments