選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TestAspect.java 363B

1234567891011121314151617181920
  1. package test;
  2. public aspect TestAspect {
  3. Object around() : within(TestClass) {
  4. return proceed();
  5. }
  6. after() : within(TestClass) {
  7. }
  8. }
  9. class TestClass {
  10. public void test() {
  11. try {
  12. new String();
  13. } catch (Exception ex) {
  14. }
  15. }
  16. }