用代码块在new对象时set属性
Posted twoheads
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用代码块在new对象时set属性相关的知识,希望对你有一定的参考价值。
看到这样一种用法,很方便
request.setRequestHead(new RequestHeadType() {{ setRequestor("Online"); setRequestType("Hotel.Order.ProcessService.SelfService.ModifyInvoice"); setClientAppID("100002669"); setTimeStamp(LocalDateTime.now().toString()); setRequestID(UUID.randomUUID().toString()); setServerFrom("test"); }});
刚开始两个{{}}没有看懂
与下面的情况很类似:
public class test11 { public static void main(String[] args) { new test11("321"); } static { System.out.println("test11.static initializer"); } { setName("123"); System.out.println(this.name); } public test11(String name) { this.name = name; System.out.println("test11." + this.name); } private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }
输出结果:
test11.static initializer 123 test11.321
第一个大括号是方法的重写
第二个大括号是重写的代码块,比构造方法还先执行,并且可调用类的set方法
以上是关于用代码块在new对象时set属性的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 利用new Set()抽离数组中所有具备相同属性值的对象.
JavaScript 利用new Set()抽离数组中所有具备相同属性值的对象.
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段