📄 attribute_exceptions.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -