欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ToStringBuilder类的一些心得

程序员文章站 2023-11-12 23:39:34
今天接触了一下tostringbuilder类,这里做一个备忘。tostringbuilder在包 common-lang 中,主要用于一个类的格式化输出。tostring...
今天接触了一下tostringbuilder类,这里做一个备忘。
tostringbuilder在包 common-lang 中,主要用于一个类的格式化输出。tostringbuilder类中的append方法可以向该类添加基本类型、数组和对象 ,只有添加的方法才会被tostring方法输出。
        tostringstyle类则是对输出的内容进行格式化。
例如:
public string tostring() …{
return new tostringbuilder(this, tostringstyle.multi_line_style)
.append(『name』, name)
.append(『age』, age)
.tostring();
}
tostringstyle参数说明:
1. default_style
   person@182f0db[name=john doe,age=33,smoker=false]
2. multi_line_style
    person@182f0db[
   name=john doe
   age=33
   smoker=false
]
3. no_field_names_style
   person@182f0db[john doe,33,false]
4. short_prefix_style
  person[name=john doe,age=33,smoker=false]
5. simple_style
   john doe,33,false