Skip to content
Advertisement

Need help to run an if statement inside an object to change that objects attributes (JAVA)

Im not extremely high level at this and this is my first time really working with objects and classes. I am trying to make a card game and want to color the card’s suit name either red or black with the Java color code things. Each card is its own object, with a suit and a number value. Heres the “Card” class:

JavaScript

the methods in the Main class that determine the suit and values:

JavaScript

How the Card class is used:

JavaScript

So i need each cards color to be an attribute, but the bolded IF statement I have in the object doesnt work. Based on how my code is working, I dont know of a way that it could go in the Main class without causing a lot of other problems.

Advertisement

Answer

Your Card class has a severe problem: it is not a class at all, it tries to execute code outside a method.

Give it a private field called cardDisplay and initialize it in a constructor of Card. Add a method to retrieve the value of cardDisplay:

JavaScript

If you skip the declaration in your code (that’s where you specify the type of the local variable), you can even save a line with

JavaScript

Just don’t skip the declaration for real local variables that are not available as fields, like probably cardColor.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement