Forums Register Login

Java Beginner : Seeking some help/ideas on basic solitaire card game

+Pie Number of slices to send: Send
Hi! I am beginner in java and looking for some help and ideas in developing basic solitaire game. To start-with , I am trying to implement just one class and it's methods at the moment and below is attached code and snapshot of what I tried. please suggest where and what sort of changes I need to make ? Thanks in advance!!

Class : Card

Fields:
cardIndex: The card's index, from 1 to 52.

Methods:
getSuit: Returns the card's suit.
getValue: Returns the card's value (such as 10, king, etc).
colour: The colour of the card is `red' if this card is a heart or diamond, and `black' otherwise.

toString: Returns a string representation of this card, including its suit and rank. Example: Ace of clubs would be ClubA, ten of diamonds would be Diamond10, and queen of spades would be SpadeQ.

paintThis(Graphics g) Draws the card. In the simple GUI, this should draw a Rectangle, with the string representation of the card written in the colour corre-sponding to the colour of the card (either black or red)

+Pie Number of slices to send: Send
Good start. A few suggestions:

* Use a Enum to represent the card's suit SPADE,HEART,CLUB,DIAMOND
* The Card class should be a POJO, put the main method in a new class
* The card's value (eg A,2,3 etc) may probably be a Enum too, rather than an array
* If you want to associate a card's color, use the java.awt.Color class
You didn't tell me he was so big. Unlike this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1980 times.
Similar Threads
Need help writing constructor
Card Class and Drivers
class question
Error
enums
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 14:52:32.