lots of exercises in java... from https://github.com/exercism/java
Katrina Owen e7f5c3677d Inline the exercise README insert (#1290) 6 yıl önce
..
.meta Restructure exercise directory 7 yıl önce
src Restructure exercise directory 7 yıl önce
README.md Inline the exercise README insert (#1290) 6 yıl önce
build.gradle bank-account: implement exercise 7 yıl önce

README.md

Bank Account

Simulate a bank account supporting opening/closing, withdrawals, and deposits of money. Watch out for concurrent transactions!

A bank account can be accessed in multiple ways. Clients can make deposits and withdrawals using the internet, mobile phones, etc. Shops can charge against the account.

Create an account that can be accessed from multiple threads/processes (terminology depends on your programming language).

It should be possible to close an account; operations against a closed account must fail.

Instructions

Run the test file, and fix each of the errors in turn. When you get the first test to pass, go to the first pending or skipped test, and make that pass as well. When all of the tests are passing, feel free to submit.

Remember that passing code is just the first step. The goal is to work towards a solution that is as readable and expressive as you can make it.

Have fun!

Java Tips

This exercise introduces concurrency. To pass the last test you might find the synchronized keyword or locks useful.

Problems arising from running code concurrently are often intermittent because they depend on the order the code is executed. Therefore the last test runs many threads several times to increase the chances of catching a bug. That means this test should fail if your implementation is not thread safe, but there is a chance it will pass just because there was no concurrent modification attempt. It is unlikely that this will occur several times in a row since the order the code is executed should vary every time you run the test. So if you run the last test a couple of times and it passes every time then you can be reasonably sure that your implementation is correct.

Running the tests

You can run all the tests for an exercise by entering

$ gradle test

in your terminal.

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.