classes in c a lot of this stuff is trivia but it can be
play

Classes in C++ A lot of this stuff is trivia, but it can be hard to - PowerPoint PPT Presentation

Classes in C++ A lot of this stuff is trivia, but it can be hard to discern up front. Classes in C++ are complex and have a ton of rules, most of which I look up as I go Ill try to point out the core concepts and assign readings / practice


  1. Classes in C++

  2. A lot of this stuff is trivia, but it can be hard to discern up front. Classes in C++ are complex and have a ton of rules, most of which I look up as I go I’ll try to point out the core concepts and assign readings / practice

  3. Because there are so many rules, you have to do the reading Coming to class will not be enough

  4. Let’s say I wanted to represent a rectangle

  5. class Rectangle { private: unsigned int length; unsigned int width; public: Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { } unsigned int area() const { return (length * width); } };

  6. class Rectangle { private: unsigned int length; Member variables unsigned int width; public: Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { } unsigned int area() const { return (length * width); } };

  7. class Rectangle { private: unsigned int length; unsigned int width; public: Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { Constructor } unsigned int area() const { return (length * width); } };

  8. class Rectangle { private: unsigned int length; unsigned int width; public: Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { } unsigned int area() const { Method return (length * width); } };

  9. Rectangle myRectangle = Rectangle(12,14); “Give me an empty Rectangle and then call its constructor to fill it in.”

  10. This is called a “constructor” Rectangle(unsigned int len, unsigned int wid) { length = len; width = wid; } It is a special method, called whenever a Rectangle is created, to set it up

  11. Here I use an initialization list Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { } In C++, initialization is a special thing, and this method is preferred (More efficient, for reasons we’ll learn later)

  12. Special Constructors • A default constructor is one without any arguments • C++ makes this for you if you don’t define a constructor • A copy constructor copies an object • C++ will generate this too

  13. Initialization by copy-constructor int main() { Rectangle myRectangle = Rectangle(12,14); Rectangle myOtherRectangle(myRectangle); cout << "The area of myOtherRectangle is “ << myOtherRectangle.area() << endl; return 0; }

  14. But you can define it instead, if you want!

  15. Note: must be const… Rectangle(const Rectangle &other) : length(other.length), width(other.width) { }

  16. I can define things outside of classes too… // shapes.h class CartesianPoint { public: double distanceFrom(CartesianPoint &other) const; } // shapes.cc double CartesianPoint::distanceFrom(CartesianPoint &other) const { return sqrt((x - other.getX()) * (x - other.getX()) + (y - other.getY()) * (y - other.getY())); } Functions smaller than a line or two should usually go outside of the header file

  17. Why keep things private? • Reveal as little about your implementation as possible • Because if someone else assumes details, I’ll break their code • Almost never make member vars public

  18. Consider what would happen if we wrote 20k lines of code that used x and y, but then we wanted to change to the top left and bottom right point We’d waste a ton of time rewriting it

  19. Consider what would happen if we wrote 20k lines of code that used x and y, but then we wanted to change to the top left and bottom right point

  20. This is the biggest mistake new programmers make: declare everything public. Hiding things makes things harder, and that’s exactly what we want

  21. Exercise: write impl of rectangle that caches area

  22. In class exercise: use top-left coordinate, bottom-right coordinate instead

  23. I can define things outside of classes too… At the end of a function, const means “I // shapes.h don’t change anything” class CartesianPoint { public: double distanceFrom(CartesianPoint &other) const; } // shapes.cc double CartesianPoint::distanceFrom(CartesianPoint &other) const { return sqrt((x - other.getX()) * (x - other.getX()) + (y - other.getY()) * (y - other.getY())); } Functions smaller than a line or two should usually go outside of the header file

  24. Now let’s say I want… Polygon Rectangle Triangle

  25. Abstract class class Shape { public: virtual double area() const = 0; }; Pure virtual method

  26. Abstract class class Shape { public: virtual double area() const = 0; }; Pure virtual method I’m not defining it here, but subclasses must

  27. Abstract class class Shape { public: virtual double area() const = 0; }; Pure virtual method I’m not defining it here, but subclasses must Because Shape has a pure virtual method, no concrete Shape can exist, it is an abstract class

  28. Abstract class class Shape { public: virtual double area() const = 0; }; Pure virtual method I’m not defining it here, but subclasses must Because Shape has a pure virtual method, no concrete Shape can exist, it is an abstract class Big note: the = 0 does not mean to return 0, it means nothing defined

  29. This syntax means “Rectangle inherits from Shape” class Rectangle : public Shape { private: unsigned int length; unsigned int width; public: Rectangle(unsigned int length, unsigned int width) : length(length), width(width) { } Rectangle(const Rectangle &other) : length(other.length), width(other.width) { } virtual double area() const { return (length * width); } };

  30. This syntax means “Rectangle inherits from Shape” class Rectangle : public Shape { private: unsigned int length; unsigned int width; https://stackoverflow.com/questions/860339/difference- public: Rectangle(unsigned int length, unsigned int width) between-private-public-and-protected-inheritance : length(length), width(width) { } Rectangle(const Rectangle &other) : length(other.length), width(other.width) { } virtual double area() const { return (length * width); } };

  31. Subclasses • Inherit all member variables, can modify public / protected ones • Can redefine virtual methods • It may help to think of these as “redefinable” methods

  32. Storage

  33. Storage We’re not going to talk about pointers yet, so don’t think about that today

  34. This is what a Rectangle looks like to C++ length double area() width area() name() double name() ctr..

  35. This is what a Rectangle looks like to C++ length double area() width area() name() double name() ctr.. Constructors, etc…

  36. A class is like a recipe to make a rectangle “To make a rectangle, I need to fill in length / width” length double area() width area() name() double name() ctr..

  37. This is what a CartesianPoint looks like x y getX() getY() others…

  38. So what does a Triangle look like?

  39. CartesianPoint point1 CartesianPoint point2 CartesianPoint point3 area() name() ctr..

  40. Stuff the box for CartesianPoint here CartesianPoint point1 CartesianPoint point2 CartesianPoint point3 area() name() ctr..

  41. x y point1 getX() getY() CartesianPoint point2 Same for these CartesianPoint point3 area() name() ctr..

  42. So the rule is, if you see a class as a member variable of another class, it’s like stuffing a box inside a box

  43. Next class, we’ll see that these boxes are laid out in memory

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend