Lecture overview -- Keyboard shortcut: 'u'    Next page: Organization of classes and members -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Alphabetic index  Help page about these notes  Course home    Exit possible frame set  Abstraction Mechanisms, Part 1 - slide 1 : 41

From C# classes to C++ classes
We introduce classes in C++ by studying similarities and differences relative to C# classes
Point.cs
Class Point in C#.
point1.cc
Class Point i C++ together with a main function - member functions defined in class definition.
point2.cc
Class Point i C++ together with a main function - member functions defined outside the class.
point3.cc
Class Point i C++ - with an output function for points.