"::" in, f.e., ios::scientific- meaning of it???

Hello!

Please, what is operator"::" meaning (in human language) inexpressions like:

ios::scientific
ios::fixed

In other words, what means the "word" "::"???

MANY THANKS!!!

:: separates out the elements that qualify a name. In the examples you've given, "ios::scientific" is the full name of the entity called "scientific" in the namespace called "ios".
It's called the binary scope resolution operator?
Last edited on
Is that a question?
Sort of, I'm just wondering myself, I'm a beginner too and I read that that is what it's called...
The scope resolution operator is someone you would have learned about if you had not been falsely taught to write "using namespace std;"
Topic archived. No new replies allowed.