java 调试 输出表达式,使用Java 8 Lambda表达式打印有关错误的调试信息

bf6909b64ae24ca8f0e3589710bc9853.png

隔江千里

如果希望将方法引用作为唯一输入,则可以使用以下技巧将它们调试为可打印的名称:public static void main(String[] args) {  Person p = new Person();  Supplier nameSupplier1 = () -> "MyName";  Supplier nameSupplier2 = () -> { throw new RuntimeException(); };  set(p, Person::setName, nameSupplier1);  System.out.println(p.getName()); // prints MyName  set(p, Person::setName, nameSupplier2); // throws exception with message  System.out.println(p.getName()); // Does not execute}interface DebuggableBiConsumer extends BiConsumer, Serializable {}private static void set(    E o, DebuggableBiConsumer setter, Supplier valueSupplier) {  try {    setter.accept(o, valueSupplier.get());  } catch (RuntimeException e) {    throw new RuntimeException("Failed to set the value of "+name(setter), e);  }}private static String name(DebuggableBiConsumer, ?> setter) {  for (Class> cl = setter.getClass(); cl != null; cl = cl.getSuperclass()) {    try {      Method m = cl.getDeclaredMethod("writeReplace");      m.setAccessible(true);      Object replacement = m.invoke(setter);      if(!(replacement instanceof SerializedLambda))        break;// custom interface implementation      SerializedLambda l = (SerializedLambda) replacement;      return l.getImplClass() + "::" + l.getImplMethodName();    }    catch (NoSuchMethodException e) {}    catch (IllegalAccessException | InvocationTargetException e) {      break;    }  }  return "unknown property";}局限性在于它不会为lambda表达式(对包含lambda代码的综合方法的引用)和"unknown property"接口的自定义实现打印出非常有用的方法引用。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值