सामान्य मामले से पहले: एक संग्रह के कुछ तत्व एक निश्चित स्थिति को पूरा करने के लिए एक झंडे का उपयोग करना असामान्य नहीं है। लेकिन जिस पैटर्न को मैंने इसे हल करने के लिए सबसे अधिक बार देखा है वह है चेक को एक अतिरिक्त विधि में ले जाना और सीधे उससे वापस लौटना (जैसे कि उसके उत्तर में बताए गए सिलियन फोथ ):
private <T> boolean checkCollection(Collection<T> collection)
{
for (T element : collection)
if (checkElement(element))
return true;
return false;
}
जावा 8 के बाद से अधिक संक्षिप्त तरीका है Stream.anyMatch(…)
:
collection.stream().anyMatch(this::checkElement);
आपके मामले में यह संभवत: इस तरह लगेगा ( list == entry.getValue()
आपके प्रश्न में)
map.values().stream().anyMatch(list -> list.size() > limit);
आपके विशिष्ट उदाहरण में समस्या इसके लिए अतिरिक्त कॉल है fillUpList()
। उत्तर बहुत कुछ इस बात पर निर्भर करता है कि यह विधि क्या करने वाली है।
साइड नोट: जैसा कि यह खड़ा है, कॉल का fillUpList()
कोई मतलब नहीं है, क्योंकि यह उस तत्व पर निर्भर नहीं करता है जो आप वर्तमान में पुनरावृत्त कर रहे हैं। मुझे लगता है कि यह प्रश्न प्रारूप को फिट करने के लिए आपके वास्तविक कोड को कम करने का एक परिणाम है। लेकिन वास्तव में यह एक कृत्रिम उदाहरण की ओर जाता है जिसकी व्याख्या करना मुश्किल है और इस प्रकार इसके बारे में तर्क करना मुश्किल है। इसलिए मिनिमल, कम्प्लीट और वेरिफ़िबल का उदाहरण देना बहुत ज़रूरी है ।
तो मुझे लगता है कि वास्तविक कोड entry
विधि के लिए वर्तमान गुजरता है ।
लेकिन पूछने के लिए अधिक प्रश्न हैं:
- क्या इस कोड तक पहुँचने से पहले नक्शे की सूचियाँ खाली हैं? यदि ऐसा है, तो पहले से ही एक नक्शा और
BigInteger
चाबियों की सूची या सेट क्यों है ? यदि वे खाली नहीं हैं, तो आपको सूचियों को भरने की आवश्यकता क्यों है ? जब सूची में पहले से ही तत्व हैं, तो क्या यह इस मामले में अपडेट या कुछ अन्य संगणना नहीं है?
- किसी सूची की सीमा से बड़ा बनने का कारण क्या है? क्या यह एक त्रुटि स्थिति है या अक्सर होने की उम्मीद है? क्या यह अमान्य इनपुट के कारण है?
- क्या आपको उस सीमा तक गणना की गई सूची की आवश्यकता है जो आप सीमा से बड़ी सूची तक पहुँचते हैं?
- " कुछ करो " भाग क्या करता है?
- क्या आप इस भाग के बाद भरने को पुनः आरंभ करते हैं?
यह केवल कुछ प्रश्न हैं जो मेरे दिमाग में आए जब मैंने कोड के टुकड़े को समझने की कोशिश की। तो, मेरी राय में, यह वास्तविक कोड गंध है : आपका कोड स्पष्ट रूप से इरादे का संचार नहीं करता है।
इसका मतलब या तो यह हो सकता है ("सभी या कुछ भी नहीं" और सीमा तक पहुंचना एक त्रुटि को इंगित करता है):
/**
* Computes the list of all foo strings for each passed number.
*
* @param numbers the numbers to process. Must not be {@code null}.
* @return all foo strings for each passed number. Never {@code null}.
* @throws InvalidArgumentException if any number produces a list that is too long.
*/
public Map<BigInteger, List<String>> computeFoos(Set<BigInteger> numbers)
throws InvalidArgumentException
{
if (numbers.isEmpty())
{
// Do you actually need to log this here?
// The caller might know better what to do in this case...
logger.info("Nothing to compute");
}
return numbers.stream().collect(Collectors.toMap(
number -> number,
number -> computeListForNumber(number)));
}
private List<String> computeListForNumber(BigInteger number)
throws InvalidArgumentException
{
// compute the list and throw an exception if the limit is exceeded.
}
या इसका मतलब यह हो सकता है ("पहली समस्या तक अपडेट"):
/**
* Refreshes all foo lists after they have become invalid because of bar.
*
* @param map the numbers with all their current values.
* The values in this map will be modified.
* Must not be {@code null}.
* @throws InvalidArgumentException if any new foo list would become too long.
* Some other lists may have already been updated.
*/
public void updateFoos(Map<BigInteger, List<String>> map)
throws InvalidArgumentException
{
map.replaceAll(this::computeUpdatedList);
}
private List<String> computeUpdatedList(
BigInteger number, List<String> currentValues)
throws InvalidArgumentException
{
// compute the new list and throw an exception if the limit is exceeded.
}
या यह ("सभी सूचियों को अद्यतन करें लेकिन मूल सूची को बनाए रखें यदि यह बहुत बड़ी हो जाती है"):
/**
* Refreshes all foo lists after they have become invalid because of bar.
* Lists that would become too large will not be updated.
*
* @param map the numbers with all their current values.
* The values in this map will be modified.
* Must not be {@code null}.
* @return {@code true} if all updates have been successful,
* {@code false} if one or more elements have been skipped
* because the foo list size limit has been reached.
*/
public boolean updateFoos(Map<BigInteger, List<String>> map)
{
boolean allUpdatesSuccessful = true;
for (Entry<BigInteger, List<String>> entry : map.entrySet())
{
List<String> newList = computeListForNumber(entry.getKey());
if (newList.size() > limit)
allUpdatesSuccessful = false;
else
entry.setValue(newList);
}
return allUpdatesSuccessful;
}
private List<String> computeListForNumber(BigInteger number)
{
// compute the new list
}
या यहां तक कि निम्नलिखित ( computeFoos(…)
पहले उदाहरण से लेकिन अपवादों के बिना)
/**
* Processes the passed numbers. An optimized algorithm will be used if any number
* produces a foo list of a size that justifies the additional overhead.
*
* @param numbers the numbers to process. Must not be {@code null}.
*/
public void process(Collection<BigInteger> numbers)
{
Map<BigInteger, List<String>> map = computeFoos(numbers);
if (isLimitReached(map))
processLarge(map);
else
processSmall(map);
}
private boolean isLimitReached(Map<BigInteger, List<String>> map)
{
return map.values().stream().anyMatch(list -> list.size() > limit);
}
या इसका मतलब कुछ अलग हो सकता है ... ;;