Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
4003CEM-Exam-Practise/Classes and Inheritance/constructors.cpp
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (21 sloc)
853 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
/* | |
Constructors, building blocks part of OOP. | |
Quite weird imo, but they are cool at the same time. | |
*/ | |
class ContructMe { // defining class | |
public: // public access | |
ContructMe() { // constructor with the same name as class name | |
cout << "You just called me!" << endl; // what will be called when you make the object of the class | |
} | |
void func() { | |
cout << "Hello, from func()" << endl; // sample function i added for clarity below | |
} | |
}; | |
int main() { | |
ContructMe cm; // making the object of the class and it calls the constructor | |
cm.func(); // calls the func that was made above - to show that the class is behaving normally | |
// and not anything different as with the constructor varient. | |
return 0; // return 0 | |
} |