Option is a good thing that most people really don't know how to use!
AD |
OverviewNullPoInterException, ChInese name:Null poInter exceptionNPE, also known as NPE, is one of the most common error anomalies In software systems.Long ago, the Google Guava project IntroducedOptionalNull poInter exceptionNullTo expect programmers to write code that is both neat and more readable
Overview
NullPoInterException, ChInese name:Null poInter exceptionNPE, also known as NPE, is one of the most common error anomalies In software systems.
Long ago, the Google Guava project IntroducedOptionalNull poInter exceptionNullTo expect programmers to write code that is both neat and more readable.
OptionalNull
The followIng is a common parameter Null detection code, with an example as follows.
//DetermIne If the admInistrative region is emptyIfCountry!=Null{//DetermIne whether the admInistrative city is empty at the upper level of the admInistrative districtIfCountry. GetCity!=Null{//DetermIne whether the admInistrative provInce is empty at the upper level of the admInistrative cityIfCountry. GetCity. GetProvInce!=Null{//ObtaIn data related to the correspondIng admInistrative provInceReturnCountry. GetCity. GetProvInce. GetName}}}
This is still the most common three-layer judgment. If there is a large section of busIness logic processIng, you will fInd that the code not only looks bulky, but also dIfficult to read and has poor readability!
Optional source code diagram
If adjusted to useOptionalTo write it, it can be converted to the followIng notation:
//StrIngresult=Optional. of NullableCountry.MapCountry::GetCity.MapCity::GetProvInce.MapProvInce::GetName.OrElseError
adoptOptionalAfter programmIng, should the readability and cleanlIness of the entire code be much cleaner!
API Introduction
In JDK8, Option has a total of 12 core methods, let's take a look at their usage toGether!
2.1. empty
The empty method Returns an Optional Instance that does not contaIn a Value. It is meanIngless to use it alone and is maInly used In conjunction with other methods.
OptionalOptional=Optional. emptySystem. OutPrIntlnOptional--Optional. empty
2.2of
of Optional Null poInter exception.
//OptionalOptional=Optional.of"HelloWorld"System. OutPrIntlnOptional--Optional[HelloWorld]//Null poInter exceptionOptionalOptional=Optional.ofNullSystem. OutPrIntlnOptional--ExceptionInthread"maIn"java.lang.NullPoInterExceptionatjava.util.Objects.requireNonNullObjects. java:two hundred and threeatjava.util.Optional.<Init>Optional. java:nInety-sixatjava.util.Optional.ofOptional. java:one hundred and eight
2.3Of Nullable
The Of Nullable method will Return an Optional Instance, and If the passed In Value is not empty, it will Return an object contaInIng the specIfied Value; If Null is passed In, an empty object withOut any Values will be Returned, which is the first IntroducedOptional. emptyObject.
//OptionalOptional=Optional. of Nullable"HelloWorld"System. OutPrIntlnOptional--Optional[HelloWorld]//emptyOptionalOptional=Optional. of NullableNullSystem. OutPrIntlnOptional--Optional. empty
2.4isPresent
The isPresent method is used to determIne whether an Instance contaIns a Value. If it contaIns a non Null Value, it Returns True, otherwise it Returns False.
//Truebooleanrs1=Optional. of NullableHello.isPresentSystem.Out.PrIntlnrs1//Falsebooleanrs2=Optional. of NullableNull.isPresentSystem.Out.PrIntlnrs2--TrueFalse
2.5Get
The Get method Returns the current Value If the Instance contaIns non Null Values; Otherwise, a NoSushElementException exception will be thrown.
//Objectrs=Optional. of Nullable"HelloWorld".GetSystem.Out.PrIntlnrs--HelloWorld//NoSushElementExceptionObjectrs=Optional. of NullableNull.GetSystem.Out.PrIntlnrs--ExceptionInthread"maIn"java.util.NoSuchElementException:NoValuepresentatjava.util.Optional.GetOptional. java:one hundred and thirty-five
2.6IfPresent
IfPresent Consumer.
Optional. of Nullable"HelloWorld".IfPresentx->{System.Out.PrIntlnx}--HelloWorld
2.7filter
The filter method is used to filter Out values that do not meet the criteria and receive aPredicateParameter, If the condition is met, will Return the currentOptionalInstance, otherwise Return empty Instance.
Optional. of Nullable"HelloWorld". filterx->x.contaInsHello.IfPresentx->{System.Out.PrIntlnx}--HelloWorld
2.8Map
The Map method is the core method for chaIn callIng to avoid Null poInters. When an Instance contaIns a value, the passed In method is executed on the valueFunctionFunction Interface method and Returns a New value representIng the result valueOptionalInstance, which means repackagIng the Returned results asOptionalObject.
Optional. of Nullable"Hello+World".Mapt->{Ift.contaIns+{Returnt.replace+,""}Returnt;}.IfPresentt->{System.Out.PrIntlnt}--HelloWorld
2.9flatMap
The flatMap method is similar to the Map method, with the only dIfference beIng that:The Returned value needs to be manually wrapped asOptionalInstance, and parameter value cannot be empty.
Optional. of Nullable"Hello+World".flatMapt->{Ift.contaIns+{t=t.replace+,""}//ReturnOptional.oft}.IfPresentt->{System.Out.PrIntlnt}--HelloWorld
2.tenOrElse
OrElse .
Objectrs=Optional. of NullableNull.OrElse"Null"System.Out.PrIntlnrs--Null
2.11OrElseGet
The OrElseGet method Returns a non Null value if the Instance contaIns it; Otherwise, it will execute theSupplier.
Objectresult=Optional. of NullableNull.OrElseGet->{ReturnError;}System. OutPrIntlnresult--error
2.12OrElseThrow
OrElseThrow .
Optional. of NullableNull.OrElseThrow->NewRuntimeExceptionArgument is empty--ExceptionInthread"maIn"java.lang.RuntimeException:atcom.x.x.x.x.OptionalTest.lambda$maIn$tenOptionalTest3. java:one hundred and forty-fouratjava.util.Optional.OrElseThrowOptional. java:two hundred and ninety
How should Option be used
Optional . Optional Serializable.. Optional Jackson Optional Object.Jackson Null. jackson-modules-java8 .Optional .Optional Optional API.
Summary
The above is the newly added JDK8OptionalSummary of commonly used methods for classes, whereOf NullableMapandOrElse.
in additionOrElseOrElseGetOrElseThrowThe differences are as follows:
- OrElseIf the instance contains a null value, return the specified value passed in
- OrElseGetIf the instance contains a null value, return the returned value from the passed in method
- OrElseThrowIf the instance contains null values, return the specified exception type
adoptOptionalTo solve the problemNPEException code is more elegant, such as the current object being relatively simple, which is a simple judgmentobj != Null.
andand.
.
#Headline Creation Challenge # # Java#
Disclaimer: The content of this article is sourced from the internet. The copyright of the text, images, and other materials belongs to the original author. The platform reprints the materials for the purpose of conveying more information. The content of the article is for reference and learning only, and should not be used for commercial purposes. If it infringes on your legitimate rights and interests, please contact us promptly and we will handle it as soon as possible! We respect copyright and are committed to protecting it. Thank you for sharing.(Email:[email protected])
Mobile advertising space rental |
Tag: Option is good thing that most people really don
Lack of social interaction in the elderly is associated with reduced Brain size
NextFuzhou Changle International Airport Comprehensive Bonded Zone approved
Guess you like
-
WeChat Launches "Gifts" Feature: Streamlining Gift-Giving and Powering Social Commerce GrowthDetail
2025-01-21 16:05:45 1
-
Xiao Chen, a Chinese expert, Elected Chair of IEC/TC45: China's Influence in Nuclear Instrumentation and Control Standardization Reaches New HeightsDetail
2025-01-21 15:52:49 1
-
Poland: An Emerging Market for Chinese Cross-border E-commerce, Cainiao Overseas Warehouses Fuel Explosive GrowthDetail
2025-01-21 11:06:16 1
-
The Central Political and Legal Affairs Work Conference Focuses on Autonomous Driving Legislation: Fast-Tracking Industry DevelopmentDetail
2025-01-20 16:41:45 1
-
The SHEIN Foundation Officially Launches: Partnering with ACT to Drive Textile Recycling and Sustainable Development in AfricaDetail
2025-01-20 15:21:39 1
-
BCIGroup Launches New Brand: Qineng Technology, Focusing on Next-Generation Infrastructure ConstructionDetail
2025-01-20 15:00:24 1
-
The Trump administration's potential TikTok ban could trigger a global domino effect: Lessons from the Kaspersky caseDetail
2025-01-20 08:42:29 1
-
China Leads in Developing IEC 63206 International Standard, Driving Global Innovation in Industrial Process Control System RecordersDetail
2025-01-18 11:06:14 1
-
The 2024 Micro-Short Series Industry Ecological Insight Report: 647,000 Job Opportunities, Rise of Diversified Business Models, and High-Quality Content as the Future TrendDetail
2025-01-17 17:33:01 1
-
Global PC Market Shows Moderate Recovery in 2024: High AIPC Prices a Bottleneck, Huge Growth Potential in 2025Detail
2025-01-17 11:02:09 1
-
Bosch's Smart Cockpit Platform Surpasses 2 Million Units Shipped, Showcasing Strength in Intelligent Driving TechnologyDetail
2025-01-17 10:55:29 1
-
YY Guangzhou Awarded "2024 Network Information Security Support Unit" for Outstanding ContributionsDetail
2025-01-17 10:43:28 1
-
TikTok CEO Invited to Trump's Inauguration, Biden Administration May Delay BanDetail
2025-01-16 20:06:11 1
-
Douyin Denies Opening International Registration: Overseas IPs Don't Equate to Overseas Registration; Platform Actively Combats Account ImpersonationDetail
2025-01-16 14:26:12 1
-
Lei Jun, Xiaomi's founder, chairman, and CEO, has set a new goal: learning to drive a forklift!Detail
2025-01-15 10:22:30 11
-
ByteDance Scholarship 2024: Fifteen Outstanding Doctoral Students Awarded RMB 100,000 Each to Advance Frontier Technology ExplorationDetail
2025-01-14 15:56:39 1
-
Fliggy Launches "Peace of Mind for the New Year" Service Initiative to Ensure Smooth Travel During the Year of the Snake Spring Festival RushDetail
2025-01-14 15:24:53 1
-
Arm's Massive Fee Hike and Potential In-House Chip Development: A Precursor to a Seismic Shift in the Chip Industry?Detail
2025-01-14 11:02:36 1
-
Adobe Firefly Launches: Generative AI Suite Revolutionizes Image and Video Processing EfficiencyDetail
2025-01-14 10:46:39 1
-
Chinese New Year Elements Sell Like Hotcakes Overseas: Cross-border E-commerce "Spring Festival Economy" Booms, Cainiao Overseas Warehouses Help Merchants Capture Market ShareDetail
2025-01-13 14:17:50 1