Let z be a pointer to an Object with member function memberFct(). What is the short version to call the member function ?
z
memberFct()
(*z)->memberFct()
z -> memberFct()
(*z) -> memberFct
z -> memberFct