日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > java >内容正文

java

Java和SAP ABAP的异常处理

發(fā)布時(shí)間:2023/12/19 java 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java和SAP ABAP的异常处理 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

Recently I am prepare an internal training and have been racking my brains to find a real example for my attendees about writting a “correct” program which gets rejected by compiler. The tricky point here is as a programmer, we always treat compiler as our god: if compiler complains that our program has errors, then we are wrong. Programmers tend to believe in that compiler will NEVER make mistakes.

Checked and unchecked exception in Java

Let’s see the following Java code:

package exception; import java.sql.SQLException; public class ExceptionForQuiz<T extends Exception> {private void pleaseThrow(final Exception t) throws T {throw (T) t;}public static void main(final String[] args) {try {new ExceptionForQuiz<RuntimeException>().pleaseThrow(new SQLException());}catch( final SQLException ex){System.out.println("Jerry print");ex.printStackTrace();}} }

What result this program will generate?
Let’s analyze it step by step.

(1) The class ExceptionForQuiz uses a generic typing syntax extends to declare a bound that T only accepts Exception and its sub classes.
As a result in my main method code the creation of new ExceptionForQuiz via the below code is legal since according to JDK source code, RuntimeException is subclass of Exception.

new ExceptionForQuiz()

Also keep in mind that RuntimeException is a kind of Unchecked exception ( do not need to be declared in method where it might be raised ), which will be compared with ABAP exception later.

(2) According to Java Document, the type parameter in generic type declaration will be replaced by its bound during compile, in my exception RuntimeException will be replaced by Exception. This is called Type Erasure.
As a result, let’s forget about the try – catch for the moment.
This is original code:

This is the code decompiled from ExceptionForQuiz.class:

You can observe the fact of type erasure clearly.
You can also check the byte code by command javap, where the RuntimeException is erased.

(3) Now let’s see the result of this quiz.
The correct answer is: this program cannot pass compile! Compiler considers that SQLException could never have possibility to be raised from within TRY block.

Unfortunately, this is what I would like to do: raise SQLException via method pleaseThrow and catch it in catch block.

How to achieve my requirement?

Just change one line as highlighted below. Instead of catching SQLException, I now catch RuntimeException in order to pacify the compiler.

Now there is no compilation error any more but when executing it, I find the raised SQLException still cannot be caught as I expect. My println is not executed at all.

I have to catch the Exception, the super class of all other exception instead ( like CX_ROOT in ABAP ), which is not a good practice in exception handling area.

Handleable and Unhandleable Exception in ABAP

You can find both definition in ABAP help.

Let’s now do the similar exercise as we did previous in Java. Create a method with below signature.

Now make the first test:

DATA(lo_test) = NEW zcl_exception_test( ).DATA: lo_exception TYPE REF TO cx_atd_exception.CREATE OBJECT lo_exception.WRITE:/ 'First test' COLOR COL_NEGATIVE.TRY.lo_test->please_throw( lo_exception ).CATCH cx_atd_exception INTO DATA(exception1).WRITE:/ 'Jerry: ' , exception1->get_text( ).ENDTRY.

It works as expected, the raised exception is caught.

Now the second test:

DATA: lo_exception2 TYPE REF TO cx_sql_exception.CREATE OBJECT lo_exception2.WRITE:/ 'Second test' COLOR COL_NEGATIVE.TRY.lo_test->please_throw( lo_exception2 ).CATCH cx_sql_exception INTO DATA(exception).WRITE:/ 'In catch sql exception:' , exception->get_text( ).ENDTRY.

The code is exactly the same as the first test, except that the exception is changed from CX_ATD_EXCEPTION to CX_SQL_EXCEPTION.
And result for the second test, 囧 …

In order to make this CX_SQL_EXCEPTION caught-able, I have to write the same dirty code as we did in Java example:

Although this time it works, but what is the reason of the different behaviors of these two examples?

The error message and short dump description have already given us a hint.
CX_ATD_EXCEPTION’s super class: CX_NO_CHECK. As its description says, it is not necessary to manually declare it in method signature using RAISING keyword.

And CX_SQL_EXCEPTION’s super class: CX_STATIC_CHECK

As a result now we have another solution:
Create another version of PLEASE_THROW method with RAISING keyword:


Use this new version and now CX_SQL_EXCEPTION could be caught:

WRITE:/ 'Third test' COLOR COL_NEGATIVE.TRY.lo_test->please_throw2( lo_exception2 ).CATCH cx_sql_exception INTO DATA(exception3).WRITE:/ 'In catch sql exception:' , exception3->get_text( ).ENDTRY.

Further reading

I have written a series of blogs which compare the language feature among ABAP, JavaScript and Java. You can find a list of them below:

  • Lazy Loading, Singleton and Bridge design pattern in JavaScript and in ABAP
  • Functional programming – Simulate Curry in ABAP
  • Functional Programming – Try Reduce in JavaScript and in ABAP
  • Simulate Mockito in ABAP
  • A simulation of Java Spring dependency injection annotation @Inject in ABAP
  • Singleton bypass – ABAP and Java
  • Weak reference in ABAP and Java
  • Java byte code and ABAP Load
  • How to write a “correct” program rejected by compiler: Exception handling in Java and in ABAP
  • An small example to learn Garbage collection in Java and in ABAP
  • String Template in ABAP, ES6, Angular and React
  • Try to access static private attribute via ABAP RTTI and Java Reflection
  • Local class in ABAP, Java and JavaScript
  • Integer in ABAP, Java and JavaScript

要獲取更多Jerry的原創(chuàng)文章,請(qǐng)關(guān)注公眾號(hào)"汪子熙":

總結(jié)

以上是生活随笔為你收集整理的Java和SAP ABAP的异常处理的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。