Risks of using a namespace

Using a namespace like std:: when you have more than one method of the same name, you run the risk of having a namespace clash. Which exact method becomes unclear if their are more than one within the specific namespace.

Privacy & Terms