@H_404_1@the best practice would be TDD(Test DriveDevelopment)
@H_404_1@When you want to develop a new software orprogram,no matter how tiny it is or how large it is,the following guide won'tmislead you.
@H_404_1@First you must remember and understand,every piece of program or software is to solve some practical problems,so weshould start from the practical problem you want to solve.
- @H_404_1@Identify and clarify your target problem
@H_404_1@1. what problem
@H_404_1@2. the requirements
@H_404_1@3. specifications
@H_404_1@4. what does it look like
@H_404_1@5. what it can do
- @H_404_1@Plan it
@H_404_1@1. list all the features with deadline
@H_404_1@2. then solve them one by one
@H_404_1@3. aware the dependency
- @H_404_1@Write test case first --- TDD
@H_404_1@1. Junit alike unit testing
@H_404_1@2. Input,output compared with expected output
@H_404_1@TDD follows the top-down design criteara