Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Kotlin for Java Developers Hello Kotlin! Creating the Card Class

harry houdini
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree
harry houdini
Android Development Techdegree Student 535 Points

Order of things

Does the order of " thivalue = value " etc matter? Mine automatically shifts down following your exact instructions?

public class Card { private int value; private String suit; private boolean faceUp;

public Card(int value, String suit, boolean faceUp)

public int getValue() {
    return value;
}

public String getSuit() {
    return suit;
}

public boolean isFaceUp() {
    return faceUp;
}

public void setFaceUp(boolean faceUp) {
    this.faceUp = faceUp;
}
    this.value = value;
    this.suit = suit;
    this.faceUp = faceUp;
}

}

1 Answer

Ben Deitch
STAFF
Ben Deitch
Treehouse Teacher

Nope, it should be fine either way :)