What is abnormal chain ?
We often think about : To throw an exception after catching one exception , And hope to save the original abnormal information , This is called an anomaly chain .
What’s the way ?
stay JDK1.4 before , As a programmer , We have to write our own code to save the original exception information .
Now? , all Throwable The subclass of can accept one in the constructor cause( Cause ) Object as parameter .
this cause Used to represent the original exception , This is done by passing the original exception to the new one , Even if the current location creates and throws a new exception , You can also trace the place where the exception first occurred through the exception chain .
The following code to demonstrate for you :
// Abnormal chain
class DynamicFieldException extends Exception{}
public class DynamicFields {
private Object[][] fields;
public DynamicFields(int initialSize) {
fields = new Object[initialSize][2];
for(int i=0;i<initialSize;i++)
fields[i] = new Object[] {null,null};
}
public String toString() {
StringBuilder result = new StringBuilder();
for(Object[] obj:fields) {
result.append(obj[0]);
result.append(": ");
result.append(obj[1]);
result.append("\n");
}
return result.toString();
}
private int hasField(String id) {
for(int i = 0;i<fields.length;i++)
if(id.equals(fields[i][0]))
return i;
return -1;
}
private int
getFieldNumber(String id) throws NoSuchFieldException{
int fieldNum = hasField(id);
if(fieldNum == -1)
throw new NoSuchFieldException();
return fieldNum;
}
private int makeField(String id) {
for(int i = 0;i<fields.length; i++)
if(fields[i][0] == null) {
fields[i][0] = id;
return i;
}
Object[][] tmp = new Object[fields.length+1][2];
for(int i = 0;i<fields.length;i++)
tmp[i]=fields[i];
for(int i = fields.length;i<tmp.length;i++)
tmp[i] = new Object[] {
null,null
};
fields = tmp;
// Recursive call with expanded fields:
return makeField(id);
}
public Object
getField(String id) throws NoSuchFieldException{
return fields[getFieldNumber(id)][1];
}
public Object setField(String id,Object value)
throws DynamicFieldException{
if(value == null) {
DynamicFieldException dfe = new DynamicFieldException();
dfe.initCause(new NullPointerException());
throw dfe;
}
int fieldNumber = hasField(id);
if(fieldNumber == -1)
fieldNumber = makeField(id);
Object result = null;
try {
result = getField(id);
}catch(NoSuchFieldException e) {
throw new RuntimeException(e);
}
fields[fieldNumber][1] = value;
return result;
}
public static void main(String[] args) {
DynamicFields df = new DynamicFields(3);
System.out.println(df);
try {
df.setField("d", "A value for d");
df.setField("Number",47);
df.setField("Number2",48);
System.out.println(df);
df.setField("d", "A new value for d");
df.setField("Number3", 11);
System.out.println("df:"+df);
System.out.println("df.getField(\"d\"):"+df.getField("d"));
Object field = df.setField("d", null);
}catch(NoSuchFieldException e) {
e.printStackTrace(System.out);
}catch(DynamicFieldException e) {
e.printStackTrace(System.out);
}
}
}
Result demonstration :
We read the code ourselves , It is more helpful for us to exercise our abilities !
I hope it can help you , thank you !