This chapter discusses pointers, classes, virtual functions, and abstract classes in C++. Pointers contain the addresses of other variables and can be used to access dynamic memory. The address of and dereferencing operators are used to work with pointers. Classes and structs can have pointer member variables. Virtual functions allow dynamic binding at runtime rather than compile-time. Abstract classes define pure virtual functions that derived classes must implement.