0
Where scope operator is used?
2 Answers
+ 1
for static access mostly. To access static members the scope operator works best but if you have an instance of an object you can use your instance with the scope operator to access members you have access to, now if what your trying to access is not within scope then the operator does little for you.
0
when you use a function from a specific library or class.