Thanks Sir. Great video.. please also provide videos on object oriented principles and SOLID design principles.
@manindersingh63712 жыл бұрын
Thanks for making this wonderful video. After watching it, I tried to use it in my code. Suppose I have 3 methods and in these 3 methods I am getting details from user about processor, ram, colour so how we have to save this information. Are we creating a builder to store the values or we have to create local variables and after storing values in these variables we need to store into our Builder(In this case only one builder will be created because we are storing values into variables first but in this case we need to create so many variables). In second approach, if we are storing each value in different builder then we need to create multiple builders. So which approach is better as according to you?