Skip to content

Instantly share code, notes, and snippets.

@misspokeycat
Created March 31, 2016 01:43
Show Gist options
  • Save misspokeycat/4e27f37d601a1365471f493a3ff13e1a to your computer and use it in GitHub Desktop.
Save misspokeycat/4e27f37d601a1365471f493a3ff13e1a to your computer and use it in GitHub Desktop.
Product firstProduct = new Product("Iphone", "22", 3, 199.99);
Product secondProduct = new Product("Android", "17", 9, 150.00);
//call the greaterThan() function of the first product with the second product as a param, to see if firstProduct > secondProduct
bool isItGreater = firstProduct.greaterThan(secondProduct);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment