gpt4 book ai didi

java - 定义局部变量时哪个顺序更好?

转载 作者:行者123 更新时间:2023-11-29 05:56:48 24 4
gpt4 key购买 nike

<分区>

PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
Map<String, Object> returnMap = new HashMap<String, Object>();
for (int i = 0; i < propertyDescriptors.length; i++) {
......
returnMap.put(propertyName, result);

}
Map<String, Object> returnMap = new HashMap<String, Object>();
PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
for (int i = 0; i < propertyDescriptors.length; i++) {
......
returnMap.put(propertyName, result);

}

定义局部变量时哪种顺序更好?如果将其定义为第一段代码,则会使定义的propertyDescriptor与其使用之间的距离过远,但将其定义为第二段代码,则会使 map 定义或 map 使用之间的距离过远。

那么订购它们的规则是什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com