The basic purpose of java packages is to group related classes. To group files in your computer, you might create a folder pictures to keep all image files and another folder videos to store your favorite movies and so on.…
Tag: Class
Basic concept of OOP, Class and Object
What is Object Oriented Programming? Object oriented programming (adorably we call it OOP) is all about breaking down large codebase into individual pieces and establishing a relationship between them. In java, those individual pieces are called objects. So, in other…