attribute_exceptions.java

来自「JASML is a java byte code compiler, prov」· Java 代码 · 共 18 行

JAVA
18
字号
/*
 * Author jyang
 * Created on 2006-4-3 19:21:05
 */
package com.jasml.classes;

public class Attribute_Exceptions extends Attribute{
    public int number_of_exceptions;
    public int[] exception_index_table;

    public Attribute_Exceptions(int attrLength, int number_of_exceptions, int[] exception_index_table){
        super(Constants.ATTRIBUTE_Exceptions,attrLength );
        this.number_of_exceptions = number_of_exceptions;
        this.exception_index_table = exception_index_table;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?