C++ Classes Flashcards
Though functionally identical, what is the biggest difference between structs and classes?
Class defaults to private, while struct defaults to public
What is the difference in use case between structs and classes
Classes are best for data abstraction and inheritance, while structs are best used for data grouping and access.
What are the two basic constructors?
Default (no args) and with input
What is the abbreviation of Constructor?
CTOR
What are the non-basic Constructors?
- Copy
- Assignment
- Move
- Move Assignment
What is Uniform Initialization Syntax
The standard ways of constructing objects and variables in c++
What are the Uniform initialization Syntax ctors?
Default, Empty, Initializer List, Assignment
What is the following Ctor? string x;
default
What is the following Ctor? string x{};
Empty
What is the following Ctor? string x{“string”};
Initializer List
What is the following Ctor? string x = “string”;
Assignment
How do you define a Class?
class MyClass{
//private fields
int num1;
public:
MyClass() {num1 = 1;}
int get_num1() { return this->num1;}
};
How do you define a Struct?
struct MyStruct{
//public fields
MyStruct() {num1 = 1;}
int get_num1() { return this->num1;}
private:
int num1;
};
What is the “this” keyword?
It is a pointer to the current object
What is the syntax for using the “this” keyword?
this->
Given class MyClass, how do you set the output of the class (like toString in Java)
ostream& operator«(ostream &out, const MyClass &m) {
//return desired output. Ex:
return out «_space;m.get_x() «_space;“,” «_space;m.get_y();
}
What is the constructor keyword “=default”?
Keeps the default version of a ctor.
What is the ctor keyword “=delete”?
Deletes ctor and prevents it from ever being defined. (also provideds a ‘deleted’ message)
What is Member Initialization?
Pre-allocating values in the contructor.
What is the order of member initialization?
In the order that the variables were declared in the class.
When does Member pre Initialization occur?
Before the curly braces in a constructor statement.
Ex: Circle() : /*member initialization*/ {}
What MUST be member initialized?
- Const values
- objects with no default ctor
- Reference Variables
- Any call to parent / base class
Why must const values be member initialized?
The compiler will set them to a default if not, and then they cannot be changed.
Why must objects without a default ctor be member initialized?
Because otherwise there is no default value they can be assigned.
Why must reference variables be member initialized?
Because there is no logical default for a memory reference.
What is Constructor Delegation?
It is essentially constructor chaining. Ex:
Circle::Circle() : Circle(1) { }
Circle(int radius) : Circle (1, 1, radius) { }
Circle(int x, int y) : Circle (x, y, 1) { }
Circle(int x, int y, int radius) : Circle (x, y, radius) { }
What is a Default Value in classes / structs?
When the variables are assigned values as they are declared outside of ctor.
What are Default Constructor Arguments?
When variables are directly assigned in the ctor. Ex:
Circle(int x=1, int y=1, int radius=1) : x(x), y(y), radius(radius) { }
What is the limiting factor of Default Constructor Arguments?
If variable values are provided in the ctor call, it must be in order. Removes some possible call options.
What is a const Variable?
A variable that, once allocated, can never be changed.
What is a const Method?
Methods that cannot change the data members of the class.
What is the most common example of const methods?
Getters.
How do you declare given method ‘MyMethod’ to be const?
int MyMethod() const {…}
How do const arguments work?
Create an agreement that data stored in the const variable will not be changed. Important when using ‘pass by reference’.