Initialization is a process of preparing an instance of an enumeration, structure or class for use.
Initializers are also called to create a new instance of a particular type. An initializer is an instance method with no parameters. Using the initializer, we can write the init keyword.
init()
{
// perform some New Instance initialization here
}