You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository serves as a documentation of my journey learning Java programming. It includes code snippets, projects, resources, and detailed notes covering various Java concepts. Contributions and feedback are welcome as I continue to explore the world of Java development.
"Welcome to my GitHub repo for 'Object Oriented Concepts II' course! Explore advanced OOP topics like collections, threads, and more. Let's dive into the exciting world of Java programming and enhance our software development skills together!
An interface with exactly one abstract method is called Functional Interface. @FunctionalInterface annotation is added so that we can mark an interface as functional interface. It is not mandatory to use it, but it’s best practice to use it with functional interfaces to avoid addition of extra methods accidentally. If the interface is annotated wit