Wednesday 17 July 2019

Liked on YouTube: Encapsulation in java with realtime example

Encapsulation in java with realtime example

Encapsulation in java with realtime example Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates.Other way to think about encapsulation is, it is a protective shield that prevents the data from being accessed by the code outside this shield. Technically in encapsulation, the variables or data of a class is hidden from any other class and can be accessed only through any member function of own class in which they are declared. As in encapsulation, the data in a class is hidden from other classes, so it is also known as data-hiding. Encapsulation can be achieved by: Declaring all the variables in the class as private and writing public methods in the class to set and get the values of variables public class Encapsulate { // private variables declared // these can only be accessed by // public methods of class private String geekName; private int geekRoll; private int geekAge; // get method for age to access // private variable geekAge public int getAge() { return geekAge; } // get method for name to access // private variable geekName public String getName() { return geekName; } // get method for roll to access // private variable geekRoll public int getRoll() { return geekRoll; } // set method for age to access // private variable geekage public void setAge( int newAge) { geekAge = newAge; } // set method for name to access // private variable geekName public void setName(String newName) { geekName = newName; } // set method for roll to access // private variable geekRoll public void setRoll( int newRoll) { geekRoll = newRoll; } } -~-~~-~~~-~~-~- Please watch: "How to buy a domain name from GoDaddy 2019" https://www.youtube.com/watch?v=ULV2vE1Ptio How to make a calling app in android https://www.youtube.com/watch?v=8VHRLWDmaHo How to create drawing android app in mit app inventor 2 https://www.youtube.com/watch?v=FimKlZH6Lkg How to make android calculator app using mit app https://www.youtube.com/watch?v=W39tJVxbvSM How to upload android app in google play store https://www.youtube.com/watch?v=KIPf9pBi89k how to create camera app in mit app inventor 2 https://www.youtube.com/watch?v=o-bYys8v9g4 How to create first android app in mit app inventor https://www.youtube.com/watch?v=pZWdFEzCZP0 -~-~~-~~~-~~-~- How to create an app for free using your mobile phone 2019 https://youtu.be/VxmK-giIyGA How to delete history in google chrome 2019 android https://youtu.be/2YJqas7Dwno how to create camera app in mit app inventor 2 https://youtu.be/o-bYys8v9g4 how to redirect http to https in Wordpress website https://youtu.be/dLrsJboGzRg How to install wordpress in xampp step by step https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ How to add youtube video to wordpress website https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ how to create child theme in WordPress 2019 https://youtu.be/zM-CT9wFtw8?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ sdfhfdghjhjlqwerqwes werte qwexvnkl
via YouTube https://youtu.be/AXf3ieCOV2g

No comments:

Post a Comment

😍Developer on Weekends #shorts #officememes #developermemes

😍Developer on Weekends #shorts #officememes #developermemes Welcome to the latest viral YouTube shorts meme for developers! 😍Developer on...