John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C++ MOC


C++ Object Oriented Programming

Methods

https://www.w3schools.com/cpp/cpp_class_methods.asp

1
2
3
4
// Method/function definition outside the class  
void **MyClass::myMethod()** {  
 cout << "Hello World!";  
}

Constructors

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
//outside definition
Car::Car(string x, string y, int z) {  
 brand = x;  
 model = y;  
 year = z;  
}
// Creating new object
Car carObj1("BMW", "X5", 1999);
//empty constructor call
Car carObj2;

Backlinks


References:

Created:: 2021-11-22 15:53


Interactive Graph