As you can imagine, for an aircraft there would be many more methods that could be implemented such emergency landing and altitude cruising actions
Once objects have been created, they can use the methods from within their class by using the dot (.) notation
As these methods are associated with objects, they are called instance methods
For example if an object has been created as below:
jumboJet = new aircraft (“Boeing”, ”747”, 416, 547)
It can use methods by doing the following:
Objectname.Methodname:
For example: jumboJet.Takeoff()