• 关于toString方法的重写工具ToStringBuilder


    原文:https://blog.csdn.net/zhaowen25/article/details/39521899#

    apache的commons-lang3的工具包里有一个ToStringBuilder类,这样在打日志的时候可以方便的打印出类实例中的各属性的值。

    具体用法如下:

    import org.apache.commons.lang3.builder.ToStringBuilder;
    import org.apache.commons.lang3.builder.ToStringStyle;
     
    public class Message {
     
        private String from;
     
        private String to;
     
        private String body;
     
        public String getFrom() {
            return from;
        }
     
        public void setFrom(String from) {
            this.from = from;
        }
     
        public String getTo() {
            return to;
        }
     
        public void setTo(String to) {
            this.to = to;
        }
     
        public String getBody() {
            return body;
        }
     
        public void setBody(String body) {
            this.body = body;
        }
     
        @Override
        public String toString() {
            return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
        }
        
        public static void main(String[] args) {
            Message msg = new Message();
            msg.setFrom("vince");
            msg.setTo("mike");
            msg.setBody("hello");
            System.out.println(msg.toString());
        }
    }

    而且支持多种打印格式

     

    多行输出的:

    com.vince.im.dto.Message@af72d8[
      from=vince
      to=mike
      body=hello
    ]

    默认一行的:

    com.vince.im.dto.Message@af72d8[from=vince,to=mike,body=hello]

    NO_FIELD_NAMES_STYLE:

    com.vince.im.dto.Message@af72d8[vince,mike,hello]

    SHORT_PREFIX_STYLE:

    Message[from=vince,to=mike,body=hello]

    SIMPLE_STYLE:

    vince,mike,hello

    原理其实就是通过JAVA的reflect(反射)获取值,然后组成一个Buffer。

    里面部分源码:

        /**
         * <p>Append to the <code>toString</code> the start of data indicator.</p>
         * 拼装结果的
         * @param buffer  the <code>StringBuffer</code> to populate
         * @param object  the <code>Object</code> to build a <code>toString</code> for
         */
        public void appendStart(final StringBuffer buffer, final Object object) {
            if (object != null) {
                appendClassName(buffer, object);
                appendIdentityHashCode(buffer, object);
                appendContentStart(buffer);
                if (fieldSeparatorAtStart) {
                    appendFieldSeparator(buffer);
                }
            }
        }
     
        /**
         * <p>Append the {@link System#identityHashCode(java.lang.Object)}.</p>
         * 拼装对象hashcode
         * @param buffer  the <code>StringBuffer</code> to populate
         * @param object  the <code>Object</code> whose id to output
         */
        protected void appendIdentityHashCode(final StringBuffer buffer, final Object object) {
            if (this.isUseIdentityHashCode() && object!=null) {
                register(object);
                buffer.append('@');
                buffer.append(Integer.toHexString(System.identityHashCode(object)));
            }
        }

    需要注意的是:

    Builds a toString value using the default ToStringStyle through reflection.

    It uses AccessibleObject.setAccessible to gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.

    Transient members will be not be included, as they are likely derived. Static fields will not be included. Superclass fields will be appended.

    也就是说transient和static修饰的属性不能打印出来,但是父类的是可以打印出来的,使用的时候一定要注意了。

    --------------------- 本文来自 vince_zw 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/zhaowen25/article/details/39521899?utm_source=copy 

  • 相关阅读:
    vs里替换的正则表达式引用
    javascript学习
    filter用法(使静态页面和js通过iis的asp.net过滤器)
    表格的交替选择行【jquery中siblings的用法】
    表格的cell固定宽度,当内容达到宽度时换行
    collection模块(具名元组、队列、有序字典、默认值字典)、time 模块、随机模块:random、os模块、sys模块、序列化模块
    继承的用法、属性的查找顺序、组合、新式类与经典类、菱形继承等
    多态、以及常用的关于类的方法(isinstance、issubclass、slots等)运算符重载的实现、上下文管理等
    封装、prorerty装饰器、python实现封装的原理等
    面向对象、类和对象、__dict__方法、__init__方法、对象绑定方法、类绑定方法、对象交互
  • 原文地址:https://www.cnblogs.com/shihaiming/p/9755374.html
Copyright © 2020-2023  润新知