Lecture overview -- Keyboard shortcut: 'u'    Next page: Organization of classes and members -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Lecture 3 - Page 1 : 36
Notes about C++
Abstraction Mechanisms, Part 1
From C# classes to C++ classes

We introduce classes in C++ by studying similarities and differences relative to C# classes

y:/Kurt/Files/Advanced-programming-cpp/c-sharp/classes/Point.csClass Point in C#.


y:/Kurt/Files/Advanced-programming-cpp/cpp/kn/classes/point1.ccClass Point i C++ together with a main function - member functions defined in class definition.


y:/Kurt/Files/Advanced-programming-cpp/cpp/kn/classes/point2.ccClass Point i C++ together with a main function - member functions defined outside the class.


y:/Kurt/Files/Advanced-programming-cpp/cpp/kn/classes/point3.ccClass Point i C++ - with an output function for points.