Java util Optional | Java 8 New Features Tutorials | by Mr.RamaChandra

preview_player
Показать описание
Java util Optional | Java 8 New Features Tutorials | by Mr.RamaChandra

Subscribe to our channel and hit the bell 🔔🔔🔔 icon to get video updates.

💡 Visit Our Websites
#Java8 #NewFeatures #Tutorials
--------------------------

💡 About NareshIT:

"Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA , Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA, Hyderabad, Chennai and Vijayawada, Bangalore India which provides online training across all the locations

--------------------------

💡 Our Online Training Features:
🎈 Training with Real-Time Experts
🎈 Industry Specific Scenario’s
🎈 Flexible Timings
🎈 Soft Copy of Material
🎈 Share Videos of each and every session.

--------------------------

💡 Please write back to us at

--------------------------

💡 Check The Below Links

Рекомендации по теме
Комментарии
Автор

Good explanation sir I like your videos and please upload more videos on logical programming and please help us to devolope our logical programming skills sir.

SaiTechSolutions
Автор

We are still ending up with writing boilerplate code like isPresent() etc. Then what's wrong with writing null checking code on the object itself. Please explain as i don't see any benefit of using Optional class until i am answered. Thanks..

vaibhavsrivastava
Автор

The same thing can be done by checking if s[2] == null . This does not add much value

sanketh
Автор

why optional i need ti use, we can do the samething by writing if else also

akbarmdmca
Автор

Should optional to be used for other collections in Java? Please suggest.

DeepakPandey-ijbz
Автор

ArrayList<String> list=new ArrayList<>();
list.add("Mango");
list.add("Apple");
list.add("Banana");
list.add("Grapes");

Optional<ArrayList<String>>

list1.filter((item)->{ System.out.println(item); return true;}) or ist1.map((item)->{ System.out.println(item); return item;})

is there any way with filter and map of optional to iterate one by one on array element when i using this it returning me the whole array.

goku