例1:

class TestExc extends Exception{}
void tryItOut () throws TestExc{}
void handleExc(Object o){}

void catchOne() {
	try {
		tryItOut();
	} catch (TestExc e) {
		handleExc(e);
	}
}

生成的class文件的格式如下:

void catchOne();
    flags:
    Code:
      stack=2, locals=2, args_size=1
         0: aload_0
         1: invokevirtual #2                  // Method tryItOut:()V
         4: goto          13
         7: astore_1
         8: aload_0
         9: aload_1
        10: invokevirtual #4                  // Method handleExc:(Ljava/lang/Object;)V
        13: return
      Exception table:
         from    to  target type
            0     4     7   Class com/test19/Test04$TestExc

其中的catchOne()方法的code码如下:

 2A B6 00 02 A7 00 09 4C 2A 2B B6 00 04 B1

opcode [2A] - 0000: aload_0
opcode [B6] - 0001: invokevirtual 2 [Methodref: com.test19.Test04.tryItOut, parameter = (), returns = void]
opcode [A7] - 0004: goto 9
opcode [4C] - 0007: astore_1
opcode [2A] - 0008: aload_0
opcode [2B] - 0009: aload_1
opcode [B6] - 0010: invokevirtual 4 [Methodref: com.test19.Test04.handleExc, parameter = (java.lang.Object), returns = void]
opcode [B1] - 0013: return

例2:

如上的例子与如下的例子生成的class文件一样,但是Exception Table不一样:

class TestExc1 extends Exception{}
class TestExc2 extends Exception{}

void tryItOut () throws TestExc1,TestExc2{}

void handleExc1(Object o){}
void handleExc2(Object o){}

void nestedCatch() {
    try {
        tryItOut();
    } catch (TestExc1 e) {
        handleExc1(e);
    } catch (TestExc2 e) {
        handleExc2(e);
    }
}

生成的class文件的格式如下:

void nestedCatch();
    flags:
    Code:
      stack=2, locals=2, args_size=1
         0: aload_0
         1: invokevirtual #2                  // Method tryItOut:()V
         4: goto          22
         7: astore_1
         8: aload_0
         9: aload_1
        10: invokevirtual #4                  // Method handleExc1:(Ljava/lang/Object;)V
        13: goto          22
        16: astore_1
        17: aload_0
        18: aload_1
        19: invokevirtual #6                  // Method handleExc2:(Ljava/lang/Object;)V
        22: return
      Exception table:
         from    to  target type
             0     4     7   Class com/test19/Test07$TestExc1
             0     4    16   Class com/test19/Test07$TestExc2 

再举个例子,如下:

void tryItOut () throws TestExc1,TestExc2{}
class TestExc1 extends Exception{}
class TestExc2 extends Exception{}
void handleExc1(Object o){}
void handleExc2(Object o){}

void nestedCatch() {
	try {
		try {
			tryItOut();
		} catch (TestExc1 e) {
			handleExc1(e);
		}
	} catch (TestExc2 e) {
		handleExc2(e);
	}
}

生成的class文件内容如下:

void nestedCatch();
    flags:
    Code:
      stack=2, locals=2, args_size=1
         0: aload_0
         1: invokevirtual #2                  // Method tryItOut:()V
         4: goto          13
         7: astore_1
         8: aload_0
         9: aload_1
        10: invokevirtual #4                  // Method handleExc1:(Ljava/lang/Object;)V
        13: goto          22
        16: astore_1
        17: aload_0
        18: aload_1
        19: invokevirtual #6                  // Method handleExc2:(Ljava/lang/Object;)V
        22: return
      Exception table:
         from    to  target type
             0     4     7   Class com/test19/Test04$TestExc1
             0    13    16   Class com/test19/Test04$TestExc2  

例3:

void tryItOut () {}
void wrapItUp () {}

void tryFinally() {
	try {
		tryItOut();
	} finally {
		wrapItUp();
	}
}

生成的class文件格式如下:

void tryFinally();
    flags:
    Code:
      stack=1, locals=2, args_size=1
         0: aload_0
         1: invokevirtual #2                  // Method tryItOut:()V
         4: aload_0
         5: invokevirtual #3                  // Method wrapItUp:()V
         8: goto          18
        11: astore_1
        12: aload_0
        13: invokevirtual #3                  // Method wrapItUp:()V
        16: aload_1
        17: athrow
        18: return
      Exception table:
         from    to  target type
             0     4    11   any
            11    12    11   any

 

例4:

int tryFinally() {
	try {
		int i = 1;
		return i;
	} finally {
		int j = 2;
		return j;
	}
}

生成的class文件内容如下:

int tryFinally();
    flags:
    Code:
      stack=1, locals=6, args_size=1
         0: iconst_1
         1: istore_1
         2: iload_1
         3: istore_2 // 由于要运行finally,所以需要将这个return的值暂时存储到本地变量表中

         4: iconst_2
         5: istore_3
         6: iload_3
         7: ireturn

         8: astore    4 // 将异常引用类型存储到本地变量表4的位置
        10: iconst_2
        11: istore    5
        13: iload     5 // 将本地变量表5的位置加载到栈中,因为finally中的return值要做为最终值返回
        15: ireturn
      Exception table:
         from    to  target type
             0     4     8   any
             8    10     8   any

例5:

void tryItOut () {}
void wrapItUp1 () {}
void wrapItUp2 () {}

int tryFinally() {
	try {
		try {
			int i = 1;
			return i;
		} finally {
			wrapItUp1();
		}
	} finally {
		wrapItUp2();
	}
}

则生成的代码如下:

stack=1, locals=5, args_size=1
0: iconst_1
1: istore_1
2: iload_1
3: istore_2 // 将变量i的值存储到本地变量表2的位置,以便返回
4: aload_0
5: invokevirtual #2                  // Method wrapItUp1:()V
8: aload_0
9: invokevirtual #3                  // Method wrapItUp2:()V
12: iload_2 // 从本地变量表2的位置取出返回数并返回
13: ireturn

14: astore_3 // 将异常存储到本地变量表3的位置
15: aload_0
16: invokevirtual #2                  // Method wrapItUp1:()V
19: aload_3
// 在这里抛出异常后,在异常表中查看跳转到target,
// 则清空当前操作数栈,异常重新入栈,程序继续执行
20: athrow 

21: astore        4 // 将异常存储到本地变量表4的位置
23: aload_0
24: invokevirtual #3                  // Method wrapItUp2:()V
27: aload         4
29: athrow
Exception table:
from    to  target type
    0     4    14   any
   14    15    14   any
    0     8    21   any
   14    23    21   any

  

例6:

class TestExc1 extends Exception{}
class TestExc2 extends Exception{}

void tryItOut () throws TestExc1,TestExc2{}

void handleExc1(Object o){}
void handleExc2(Object o){}

void wrapItUp () {}

void nestedCatch() {
    try {
        tryItOut();
    } catch (TestExc1 e) {
        handleExc1(e);
    } catch (TestExc2 e) {
        handleExc2(e);
    }finally {
        wrapItUp();
    }
}

  

 

 

  

  

  

关于Gen生成try-catch-finally的更多相关文章

  1. idea 自动生成try/catch代码块的快捷键

    好像每个人的快捷键可能不同:我的是  Alt+Shift+Z 网上查的是  Ctrl+Alt+T 如果都不是可以点选工具栏生成try/catch(并可查看到自己的快捷键是什么):Code->Su ...

  2. C#生成带项目编号的Word段落

    using System; using Microsoft.Office.Interop.Word; using Word = Microsoft.Office.Interop.Word; names ...

  3. Eclipse用法和技巧八:自动添加try/catch块1

    站在编译器的角度来看,java中的异常可以分为两种,已检查异常和未检查异常.对于已检查异常比如IO操作,编译器会要求设置try/catch语句块,在eclipse中也只要使用帮助快捷键ctrl+1,就 ...

  4. java生成二维码(最初版)

    研究了2个小时,发现自己竟然智障,用原先的图片覆盖另一个图片 package com.tz.util; import java.awt.Color;import java.awt.Graphics2D ...

  5. 用SAX和PULL进行XML文件的解析与生成

    XML解析有传统的dom方法还有Jsoup,SAX,PULL等,这里讲的是比较省内存的SAX和PULL方法.Android中极力推荐用PULL的方式来解析,我个人觉得pull确实比较简单,但其内部的逻 ...

  6. java图片裁剪和java生成缩略图

    一.缩略图 在浏览相冊的时候.可能须要生成相应的缩略图. 直接上代码: public class ImageUtil { private Logger log = LoggerFactory.getL ...

  7. java使用freemarker生成静态html页面

    1. 模板文件static.html <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " ...

  8. Android 如何修改gen下包的名字

    前言 当将项目中包进行重命名后,所有包名字修改了,但是在gen目录下android sdk 自动生成的包名并没有修改,如果要引用R.java 中的字段, 又得import以前的包名字.   原因 出现 ...

  9. JAVA使用qrcode生成二维码(带logo/不带logo)

    /** * */ package qrcode; import java.awt.Color; import java.awt.Graphics2D; import java.awt.Image; i ...

随机推荐

  1. 从Google Earth 中下载三维模型

    https://www.cnblogs.com/chidou-yin/p/4306224.html

  2. Bad Day -- Daniel Powter

                                     Bad Day Bad Day (坏天气) 来自 Daniel Powter -- 2005年MTV欧洲音乐奖提名最佳新人, 出自专辑 ...

  3. [svn] TortoisSVN的Blam功能

    团队开发中,我们必须要面对多个人对同一个文件进行修改的情况. 多人修改同一文件,往往就会发生很多的问题,或者随着文件中代码的数量不断增加.当我们必须要使用文件中的其他人写的代码,或者代码发生bug之后 ...

  4. Oracle EBS - Setup: 配置文件Profile

    http://blog.csdn.net/lfl6848433/article/details/8696939 Oracle EBS - Setup: 配置文件Profile 1.诊断Diagnost ...

  5. SQL Server Extended Events 进阶 2:使用UI创建基本的事件会话

    第一阶中我们描述了如何在Profiler中自定义一个Trace,并且让它运行在服务器端来创建一个Trace文件.然后我们通过Jonathan Kehayias的 sp_SQLskills_Conver ...

  6. Microsoft SQL Server 2012 管理 (2): Auditing

    -- Demostratin 2A (Using SQL Server Audit) -- Step 1: Use the master database USE master; GO -- Step ...

  7. Asp .Net Core网页数据爬取笔记

    突然要用到地区数据,想到以前用python的Scrapy框架写过一个爬虫,于是打算直接去国家统计局把最新的地区数据抓取回来.本想只需要copy一下以前的代码,就可以得到新鲜出炉的数据,谁知打开以前的项 ...

  8. C# GDI绘制仪表盘(纯代码实现)

    纯代码实现GDI绘制仪表盘,效果在代码下面. public partial class HalfDashboardUc : UserControl { /// <summary> /// ...

  9. 用MVC5+EF6+WebApi 做一个考试功能(五) 前端主题

    内容概述 前面絮絮叨叨没正事,到现在为止也没有开始写代码,不过在考虑下貌似这一节还是开始不了. B/S架构开发有一个特点,就是用浏览器打开,不同的用户群体可能有不同的风格,不论是管理平台还是普通的网站 ...

  10. 网易云基于 Kubernetes 的深度定制化实践

    本文由  网易云发布. 2017 年,Kubernetes 超越 Mesos 和 Docker Swarm成为最受欢迎的容器编排技术.网易云从 2015 下半年开始向 Kubernetes 社区贡献代 ...