In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces Java how to define the output of Holder class implementation parameters, the article is very detailed, has a certain reference value, interested friends must read it!
Define the output of Holder class implementation parameters
In many languages, the parameters of a function can be divided into input (in), out (output) and input output (inout). The reference of object (&) can be used to realize the output (out) and input output (inout) of function parameters in C _ language _. However, in the Java language, although there is no similar function of object reference, the output (out) and input output (inout) of function parameters can be realized by modifying the field values of parameters. Here, we call the data structure corresponding to this output parameter the Holder class.
The Holder class implementation code:
/ * * long integer support class * / @ Getter@Setter@ToStringpublic class LongHolder {/ * long integer value * / private long value; / * * constructor * / public LongHolder () {} / * * constructor * / public LongHolder (long value) {this.value = value;}
Holder class use case:
/ * * static constants * / / * * number of pages * / private static final int PAGE_COUNT = 100 pageIndex * maximum * / private static final int MAX_COUNT = 1000 * handle overdue orders * / public void handleExpiredOrder () {LongHolder minIdHolder = new LongHolder (0L); for (int pageIndex = 0; pageIndex)
< PAGE_COUNT; pageIndex++) { if (!handleExpiredOrder(pageIndex, minIdHolder)) { break; } }}/** 处理过期订单 */private boolean handleExpiredOrder(int pageIndex, LongHolder minIdHolder) { // 获取最小标识 Long minId = minIdHolder.getValue(); // 查询过期订单(按id从小到大排序) List orderList = orderDAO.queryExpired(minId, MAX_COUNT); if (CollectionUtils.isEmpty(taskTagList)) { return false; } // 设置最小标识 int orderSize = orderList.size(); minId = orderList.get(orderSize - 1).getId(); minIdHolder.setValue(minId); // 依次处理订单 for (OrderDO order : orderList) { ... } // 判断还有订单 return orderSize >= PAGE_SIZE;}
In fact, you can implement a generic support class that is suitable for more data types.
This is all the content of the article "how Java defines the output of Holder class implementation parameters". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.