But what is the advantage of encapsulation here? We can change the value of data member by setter method.
@mr.nobody71395 жыл бұрын
Hey Naveen, could you please explain the actual difference between Encapsulation and Abstraction.
@rajdeepbhattacharjee23015 жыл бұрын
Great job. Keep up the good work
@ramareddybheemanagoud23315 жыл бұрын
Awesome video naveen bro
@sindhusudhakaran17314 жыл бұрын
This is great !! Thank you Naveen
@agitay2724 жыл бұрын
You are the best in the market
@mohitgupta71453 жыл бұрын
Hi Naveen, thanks for the explanation. The Getters and Setters are defined outside main but inside the class however can we create the Getters and Setters in another class to access the private instance variables of this class.
@saurabh_mahurkar3 жыл бұрын
If I can access private variables by using getter and setter methods then it is contradicting the whole purpose of encapsulation. You cannot access private variables by creating object of that class but you can access those variables by using getter and setter. Will you please elaborate on this?
@kubra19755 жыл бұрын
very clear explanation thank you
@rushhour4034 жыл бұрын
I was never successful in finding a tutorial that talks about what happens if the encapsulation is not done. Nobody has been able to give an example of how exactly a bad guy can create problems if the encapsulation is missed out.
@jiteshsharma46926 жыл бұрын
awesome.... keep it up... make more videos on Java oops concepts... And core Java part...more demand from " Pune Maharashtra ".. Thank you so much
@h.rehaief35675 жыл бұрын
Great job! please more videos.
@vishwanathanbala80455 жыл бұрын
@Naveen - Just wanted to understand how this approach of declaring class variables as "private" and calling them via getters and setters is different from having a constructor(int ssn, String empName, int empAge) to initialize these class level private variables while creating the object of the class ? - could reduce the lines of code in that case. Also was able to directly get them via objReference.variableName
@nandhanamtalkies23325 жыл бұрын
Vishwanathan Bala I think , in the case of constructor for initialising values, we have to create multiple objects for executing scenarios with multiple values , it’s wasting memory. In this case we can execute multiple values with same object in same run.
@shehenazshaik62735 жыл бұрын
can you please tell me is class variable and instance variable same?
@alagumuthuakhilachockaling43885 жыл бұрын
Was great ,I understood it so well
@saha64473 жыл бұрын
Thank you for your amazing video.
@srinivasbadhamoni21756 жыл бұрын
Thank you Naveen, great explanation :)
@nalinaksheepanda15965 жыл бұрын
Hi Naveen, Can you please make one more video on Lambda concept introduced in Java 8.
@jyotibaviskar62823 жыл бұрын
Hey Navin, Can you make video on how these oops concept are used in framework. If it's already there please provide the link.. I have searched it in your videos I didn't get it. I am planning to resume my career after maternity. I have 2 years of gap.. It will e great help if you tell me from where to starts which playlist to follow. I have total 4.5 yrs of experience in automation and functional testinfg. But due to gap it's quite difficult to get into market again. I need help.
@Fnaf-vh9cs3 жыл бұрын
this was good man thanks for sharing
@mariabajwa86326 жыл бұрын
thanks naveen..
@bhavanagyarampalli89832 жыл бұрын
Thanks a lot sir
@parthjangid59663 жыл бұрын
in real time, we only declare data members as private or we also initialize it ? and is that another reason for data hiding is that if any one wants to reuse the code so they can use it without harming the existing code ?
@ummerubab67105 жыл бұрын
Thankyou Greate Teacher!! :)
@kalyanijoshi68846 жыл бұрын
hi naveen please post how to convert csv to json
@mohitsingla54366 жыл бұрын
If outside user of the class is able to change the private variables values through getter and setter methods Then what is the seecurity point here?
@shivamdave62526 жыл бұрын
In the setter method you can add security measures like checking whether the logged in user has proper entitlements to change the variable if not a message or a popup can be shown telling the user that they don't have sufficient privileges.
@hikikomori93876 жыл бұрын
@@shivamdave6252 thank you...needed that explanation as well
@naziyahasan15776 жыл бұрын
well explained. thank you :)
@soundaryasoudi11344 жыл бұрын
Hi Naveen, Thanks for your video..To protect some fields, we are declaring them as private.. But with the help of getter and setter, we can access those as well right? Then what is the actual use of it.. Can you please tell me?
@kobbyfynn80432 жыл бұрын
Generally this is considered good practice, because in real world applications , your setter and getter may not be simply be setting the values or getting the values. Example, consider a person class, modelling a person, with a field "age". Without this approach, users, can set age to negative numbers, which is not meaningful, so in a setter, one can restrict the values to be only positive and maybe throw exceptions when the age is negative
@puritymushaya82062 жыл бұрын
superb
@skyleenkariuki25276 жыл бұрын
thank you from africa i have an exam thank u u saved me alot of reading lol
@naveenautomationlabs6 жыл бұрын
Awesome :). Keep learning
@sitoramarat59456 жыл бұрын
THANK YOU VERY MUCH .
@RaviKumar-sw1wc6 жыл бұрын
Thankyou Naveen
@MrYashMundey4 жыл бұрын
Amazing Thank you :)
@SanjayKumar-zx1dv2 жыл бұрын
if outside person can get the value then where is the security mechanism in encapsulation.
@naveenautomationlabs2 жыл бұрын
They don't have direct access on private data members, it has to be accessed via public methods. It's upto you want to give access via public layer.
@mayurpatil53705 жыл бұрын
emp.setEmpAge(27); emp.empAge = 30; what is difference between this two?
@yasirmehmood765 жыл бұрын
I think there's no difference between these two. To my understanding, by using encapsulation, we can completely hide variable or can give access to get or set the variable. That might not be possible without using private. Does this make sense?
@nandhanamtalkies23325 жыл бұрын
Here Naveen explaining everything in one class that’s y you got that confusion. One class with private data variables and public getter and setter. Create object of that class in main class(separate class with main()) , we can only access public methods never private data and private methods( protected n friendly access modes are there it’s availability depends on inheritance and packages etc)..
@ma89692 жыл бұрын
Thanks
@barshabhattacharjee67884 жыл бұрын
For more visit : kzbin.info/www/bejne/p2O1mHl-ZteDpdU
@pardhasaradhinaidu6026 жыл бұрын
dear my brother tell me slowly man.Thankyou
@naveenautomationlabs6 жыл бұрын
Pardhu Chowdary Mannem it's very slowly explained.
@sreesree73285 жыл бұрын
Naveen AutomationLabs i agree with u naveen all of ur videos are slow and easily catchable only.i thank u alot after searching for a long time i got ur videos.