Forum Home
Press F1
 
Thread ID: 110857 2010-07-04 10:51:00 Right way to design a Java Application Knuth (15845) Press F1
Post ID Timestamp Content User
1115805 2010-07-04 10:51:00 Hi

I am currently teaching myself Java.

What I would like to know is what design concepts are associated with Java as opposed to say "C". In other words what are the conventional methods of designing and documenting a Java program? IOW are structure diagrams and flowcharts still appropriate or does the design of an OOP using Java have to be designed differently from a program such as C?

I hope this question is appropriate as my goal is to get a job as a Java programmer.
Knuth (15845)
1115806 2010-07-04 11:04:00 www.apl.jhu.edu

Define the objective and then I'd use a flowchart.

HTH
Sweep (90)
1115807 2010-07-04 12:39:00 I am currently teaching myself Java.What method are you using for this - what kind of references etc are you trying to learn from?


...does the design of an OOP using Java have to be designed differently from a program such as C?C is a procedural language, not an object-oriented one. As a result, the way you approach program design in Java is very, very different to the way you'd approach it in C.


I hope this question is appropriate as my goal is to get a job as a Java programmer.With all due respect... it's not. A quick google search, or a glance at one of the earlier chapters in your textbook would have provided you with the answers to your post. If you want a job as a programmer, you need to learn how to solve problems and learn for yourself - you can't expect to be spoonfed everything.
Erayd (23)
1