Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8794777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:17:51+00:00 2026-06-13T23:17:51+00:00

I wish to write a method that can return the difference in value of

  • 0

I wish to write a method that can return the difference in value of 2 cards.
Im confused as I’m learning enums and not sure of the most efficient way to implement it.

public class Card implements Comparable<Card> {
public enum Rank {TWO, THREE, FOUR, FIVE, SIX,SEVEN, EIGHT, NINE, TEN, 
                    JACK, QUEEN, KING, ACE}
public enum Suit {CLUBS, DIAMONDS, HEARTS, SPADES}

public static int difference(Card c){

}

Any help or guidance would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T23:17:52+00:00Added an answer on June 13, 2026 at 11:17 pm
    public enum Rank {ACE(1), TWO(2); /* obviously add the other values*/
        private int value  ;
        Rank(int value){
            this.value = value;
        };
        public int getValue(){
           return this.value;
        }
    
        public int calcDifference(Rank rank){
            return getValue() - rank.getValue();
        }
    
    };
    

    which can then be called like so :

    Rank rankAce =  Rank.ACE;
    System.out.println(rankAce.calcDifference(Rank.TWO));
    

    You could remove the int value and just use ordinal, but this way gives you a bit of flexibility.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wish to write a function that operates on any value that can be
I wish to write a simple javascript function that toggles the visibility of a
I am using Qt and wish to write a class that will perform some
I am trying to write an Octave script that I can run as an
I have a class, and I wish to write a __hash__() method for this
I'm trying to write a wrapper class for a protected method which I wish
I want to write an extension method for a collection of objects that uses
I wish to write the list of all parameter values used for the current
I wish to write a reusable library for querying against AD with LDAP. I'm
I wish to add some sort of a Write a Review or Rate Us

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.