Advertisement
Guest User

Untitled

a guest
Nov 15th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. In this exercise, we will explore Hashing. We won’t contribute to our game this week, but we
  2. will be building something we can use in the game next week. We will also learn about
  3. Generics.
  4. Part 1 (50%) – Hashing
  5. In this part, we want to explore hashing. Let’s start by creating a class we can hash. Follow
  6. these steps:
  7. 1. Create a Console App project.
  8. 2. Create a class named PartKey. Note that this class will be immutable.
  9. 3. Create a private string field to hold a part’s manufacturer name.
  10. 4. Create a private field to hold the part’s name.
  11. 5. Create a constructor with the parameters necessary to make this immutable.
  12. 6. Create any necessary getters and setters (remember, the class is immutable).
  13. 7. Override the GetHashCode() method. Write your own hash of the name and
  14. manufacturers name by XORing all the characters together.
  15. 8. Override the Equals() method. Note that the GetHashCode() and Equals() methods need
  16. to work together.
  17. 9. In the Program.cs class create a static method named TestPartKey. Call this method
  18. from the Main() method. In TestPartKey(), create three different PartKey instances. Print
  19. out their hash codes and see if they are different. Also, write code to try all conditions of
  20. the Equals() method. These do not have to be assertions. The point of this code is to
  21. print the results and see what happens. Be sure to show all six Equals() condition cases.
  22. Run your program and make sure it all works.
  23. 10. Create a simple PartInfo class. This class has a private int to keep track of inventory
  24. levels and a private int price (expressed as cents). Create a constructor to initialize the
  25. two values. Also create getters and setter
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement