Which Is Correct Syntax To Access The Static Member Functions #1098
Which is correct syntax to access the static member functions with class name?
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Exception Handling & Static Class Members - OOPs MCQ: Static Member Functions - Quiz No.1.
Which is correct syntax to access the static member functions with class name?
className . functionName;
className -> functionName;
className : functionName;
className :: functionName;