I'm relatively new to C++, and I have a simple question. Let's say I want to declare a stringstream
object or any other. Is there any difference in using the fully-qualified name std::stringstream
and just declaring the object as stringstream
? I've seen it done both ways in code examples.
As I said, I'm pretty new to C++, so I'd love some clarification. Thanks!