very interesting example But I recommend to create ATM as a collection of classes and implement all the functions then just call them in main. instead of doing on main just to keep free the main for testing. and inherit accounts to bank class and keep the common variables and functions on bank class.
One question, so how do know which method go under which class ? For example, printAccountSummary () is in user class, since its says account i was thinking that needs to be in account class. This is the hardest part to understand in this video, Is there any specific rules we need to follow or how to you get the idea . Please help i’m sure there are other ppl struggling to understand this as well. And thanks for the video learned alot 🙏🏻
The user class has the array list of accounts, so it will have the balance information of each account. The account class is just the blueprint or skeleton of what each account object is expected to have (name, holder, transactions). Every time we create a new account (savings, checking account, etc.) we add it to the accounts array list that belong to the user class. We have to iterate through the accounts array in the user class to get the information of each account object we have added to our user.
Do you have any class diagram or any diagram that you made before starting out coding........that would be very helpful to get an idea of what we will be doing next.......so that we can try to think of a solution on our own and if could not, then we can refer to the video
How would I set up a JUnit 5 test for this project. I'm curious as to how you can get the uuid as you won't know what it is until we run the class and then we would have to enter that uuid and pin to continue to the menu. I'm a beginner with both java and junit, any help is appreciated!
Quick question, in this particular example, is there a function to create your own user? Just looking though the source code, i noticed that you hard coded some of the users. I have only gotten through 20minutes of the video so far, but i was curious.
hii techliterate thank you for your tutorials they have been very helpful. I wanted to ask if you know how i can intrgrate the Atm system with a fingerprint scanner. I am using zk4500 fingerprint scanner
Very good video even after so many years! Just not agree so much about the logic for the function withdraw and deposit, instead two accounts I'd say just one account affected since it's for cash I think?
Wait but I disagree with the transfer funds transactions. It's not two different transactions. Transferring funds is one transaction from the account that transferred the funds. Receiving funds isn't a transaction is it?
Isn’t there any easy way to build the inscriptions. I didn’t understand why did u transfer the “0” amount from account to account. Since, It has no value. But your video is good. Can I get more video like that? I m studying on “Selenium”.
Just bumped into some tremendously disillusioning comments people came up with , I mean that was too tempestuous and entire vd was made out last 10 yrs so extensively so These kinda of impeccable and autonomous deployments and developments can’t be available at that time At least he came up with some captivating ways to carry out project
RUclips won't let me post a link to the code in this comment, but if you check out the post I link to in the main video description, there's a link to the implementation code just above the embedded video. Good luck!
If I can ask, what design pattern you have followed here for this project ? If at all, you have considered any design pattern. Or is it just a demo kind of video as a tutorial. Also, I have followed your whole video, in my code the UUID is returning a single digit value. Why that is happening any idea ? Thank you.
hey, i got it running now, and I have a problem logging in because the user ID is composed of letters. i copied it and put in my pin but it says error. can you help me?
checking balance 0, savings balance 0...when u transfer some amount lets say 100...from checing to savings...balance is : checking -100; savings 100; I WANT account like that :D
How many times is this guy gonna delete code the go right back and type the same code again over and over. You make it extremely difficult to follow along.
Your thought of process in making stuff is really precious. Appreciate you taking your time to code.
Thank you for making this! I'm a Java novice right now and this is the sort of practice project I was looking to jump into :)
fuck ur fish
Was the project complete? im about to start it. thanks!
same here
Great step toward learning real coding, the beginner stuff is oversaturated online, good to see step up!
Thank you
Hey, could you seend me your code? Mine isn't working for some reason
very interesting example But I recommend to create ATM as a collection of classes and implement all the functions then just call them in main. instead of doing on main just to keep free the main for testing. and inherit accounts to bank class and keep the common variables and functions on bank class.
for(int i=0;i
i just wanna say...God bless you. Please keep these videos coming! I wish my teacher was this clear
Are u professional programmer so far ma man
@@НиколаВълчинов that's the question i always love to ask people who started programming way much before me as im still a begginer
Очень классный урок, спасибо автору за старания и объяснения!
@@vladislavplotnikov1946 какой код?
I learned so many things from this video.Thanks a lot!
Any body watching this video in 2023
Watching in 2024
this is amazing... perfect rhythm and pace
Your videos are awesome thanks for posting
I got to learn so many things.It was indeed great help.Thank you so much.
Unfortunately, I can't help you out...you'll have to debug it yourself! A good skill to learn!
=/
@@goodlooser3156 do u have source code..if so pls send it
@@user-pu8ki8ff1o no
@@goodlooser3156 why tho
@@malalalalalala no i don't have
One question, so how do know which method go under which class ? For example, printAccountSummary () is in user class, since its says account i was thinking that needs to be in account class. This is the hardest part to understand in this video,
Is there any specific rules we need to follow or how to you get the idea . Please help i’m sure there are other ppl struggling to understand this as well.
And thanks for the video learned alot 🙏🏻
The user class has the array list of accounts, so it will have the balance information of each account. The account class is just the blueprint or skeleton of what each account object is expected to have (name, holder, transactions). Every time we create a new account (savings, checking account, etc.) we add it to the accounts array list that belong to the user class. We have to iterate through the accounts array in the user class to get the information of each account object we have added to our user.
Do you have any class diagram or any diagram that you made before starting out coding........that would be very helpful to get an idea of what we will be doing next.......so that we can try to think of a solution on our own and if could not, then we can refer to the video
Any flowchart or steps you might have written down before stating coding will also do......please
can you share the source code? I am not able to see your post which is in the description.
if you put your own bank account number and sort code in with your code you can do some pretty amazing things ;)
wow, what an awesome video , this a big step foe me in learning java ,
thank you
Thanks for the video! Keep them coming!
my lollypoop
Amazing video! I do highly enjoy that font that you have for your text editor. Does anyone here have any idea which front that is?
dude thanks a lot this video really helped me!
thanks a lot..these projects are extremely helpful :)
@techLiterate have you stopped making videos?
How would I set up a JUnit 5 test for this project. I'm curious as to how you can get the uuid as you won't know what it is until we run the class and then we would have to enter that uuid and pin to continue to the menu. I'm a beginner with both java and junit, any help is appreciated!
can i still get a copy of this code?
i wanna try run and test to learn this
well done, great lesson and very nice code but extremely too complicated, im working on it to lesser and make it more readable,
Quick question, in this particular example, is there a function to create your own user? Just looking though the source code, i noticed that you hard coded some of the users. I have only gotten through 20minutes of the video so far, but i was curious.
why u use String pin instead of pinHash[] in user class???
hii techliterate thank you for your tutorials they have been very helpful.
I wanted to ask if you know how i can intrgrate the Atm system with a fingerprint scanner. I am using zk4500 fingerprint scanner
I wrote code up to 52:48 my eclipse console is showing ATM [java Application]
what should I do?
thank you for creating these videos!
Very good video even after so many years! Just not agree so much about the logic for the function withdraw and deposit, instead two accounts I'd say just one account affected since it's for cash I think?
Many thanks!
But, how to add the account.txt in code ?? ( the users, pin and UUID saved in "account.txt")
Great tutorial, thanks !
Wait but I disagree with the transfer funds transactions. It's not two different transactions. Transferring funds is one transaction from the account that transferred the funds. Receiving funds isn't a transaction is it?
The link in the description doesn't work please provide a link to the source code.
hello sir,can you also done this with GUI,plzzz???
Isn’t there any easy way to build the inscriptions. I didn’t understand why did u transfer the “0” amount from account to account. Since, It has no value. But your video is good. Can I get more video like that? I m studying on “Selenium”.
Just bumped into some tremendously disillusioning comments people came up with ,
I mean that was too tempestuous and entire vd was made out last 10 yrs so extensively so
These kinda of impeccable and autonomous deployments and developments can’t be available at that time
At least he came up with some captivating ways to carry out project
Thank u, It's really helpful
RUclips won't let me post a link to the code in this comment, but if you check out the post I link to in the main video description, there's a link to the implementation code just above the embedded video. Good luck!
where can i find..? link to code
Where i can find code?
Really helpful.
Hello, which package have u imported while writing this program?
Why is there no interface in this but it's called ATM interface?
hey great i want a project which implements automata in ATM. can you help me ?
If I can ask, what design pattern you have followed here for this project ? If at all, you have considered any design pattern. Or is it just a demo kind of video as a tutorial. Also, I have followed your whole video, in my code the UUID is returning a single digit value. Why that is happening any idea ? Thank you.
you must code more projects brother, thanks
Instead of a do-while loop can't you just use a for loop? This is a very good video, not trying to be rude just asking.
hey, i got it running now, and I have a problem logging in because the user ID is composed of letters. i copied it and put in my pin but it says error. can you help me?
im trying to figure how to do this but having it create a file for each user that is manually created... can you point me in the write direction
Hi Ketan, sorry, I can't help you out on this one, but just try out something and see if it works!
Is someone have it's full source code?
great job! thanks!
Please give source code
hi it would be kind of you if you can give me a link to the raw files for this program please :)
thanks in advance!
I want this project for my clg...so can u plz give me the code??
Evil bank employee : ☹️
How do you add all comments line at once?
@techLiteral, hey is this a good program to practice OOP?
Can u by any chance send me this project of yours? I need it for school!
thanks a lot man. thats incredible
You're welcome
Please brother give me source code
Thank you so much!!!!
Cant pin be allotted permanently and store the data in database
hello, how can I get the code of this project ?
whats your github id . I need that code for my coming project
Thank you sir!!
Please give me source codw
What is the software and hardware requirement for this project??
I'm not sure about what you mean by hardware, but for the software he is using an Eclipse IDE , you can download it right from their website.
can you use frame in making this
where is your dto and dao?
Can u please provide the source code i need it really urgent
do have flowchart for this?
Excellent
Thanks a lot :D
HI, can this also be done with GUI?
same bro
Buddy, what apps are you using in this, was it blueJ
This is an Eclipse IDE
Can you give the code and i will pay for that via paypal?
Source code link anyone?
Where is the thread?
Use to java eclipse
love from india
I really wanted to enjoy this video, but it's really annoying that you speed up at all times.
you can find the code in the link below
github.com/mahmoud-abdalmaksoud/ATM
great !!!!!!!
thanks
make more videos!!
checking balance 0, savings balance 0...when u transfer some amount lets say 100...from checing to savings...balance is : checking -100; savings 100; I WANT account like that :D
nice thx
how are you generating comments
/** and press eneter
plz give codes
make more videos!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Give me source code
How about the front end part
Designing the website does it have a video
can i get the code please?
6:47
24:35
49:50
1:41:02
12:13
Hi sir....this code to give me ....plz sir
He mass up every thing in one lecture. Not a good video.
sadly this channel is dead
How many times is this guy gonna delete code the go right back and type the same code again over and over. You make it extremely difficult to follow along.
37:21