Hi!
Im a noob at java and i have to make a domino multiplayer game for this semester!
Does anyone can tell me more or less where to begin!I only have like two months or a little more.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi!
Im a noob at java and i have to make a domino multiplayer game for this semester!
Does anyone can tell me more or less where to begin!I only have like two months or a little more.
Start by identifying the requirements/specifications of your program. How do you want the users to interact with the program? What are the rules of Domino? etc.
After you have your requirements/specifications, start blocking out roughly what classes you think you'll need. Add basic fields and method signatures to help give you an idea of what each class does.
After you have you classes defined, go back and implement the methods. Make sure to test often to verify that the changes you're making work and don't break existing the code.