Advanced Organizer: November 12 In C++, _______________ puts together data and functions. When we bundle data and functions together, that is called _________________. __________________ is when we ignore details of something until we are ready to program that unit. Classes vs. Structs A Class and a Struct are almost the same except for 2 major differences. 1. 2. Methods Functions that are included with in a class are called methods. Data that are included with in a class are called fields. The method that is called when an object of a class is created is called the ________________. The job of the constructor is to Methods that update, or set, the fields to new values are called ________________ or _________________. Methods that retrieve, or get, field values are called ___________________ or ___________________. Access Modifiers There are two main access modifiers. _____________ means only the class can access the field or method. _____________ means the class and code outside of the class can access the field or method. Generally, methods are always _______________ and fields are always ________________.