There seem to be different views on using \'using\' with respect to the std namespace.
Some say use \' using namespace std
\', other say don\'t but rathe
This discussion is going to be alive as long as the IDE you work with is not flexible enough to show or hide the exact information you need.
That is because what you want your code to look like depends on the task at hand.
While creating my source code, I prefer to see exactly which class I'm using: is it std::string
, or the BuzFlox::Obs::string
class?
When designing the control flow, I'm not even interested in the types of the variables, but I want a focus on if
's and while
's and continue
's.
So this is my advise:
Depending on the audience of your code and the power of your tools, choose the way that either reads easiest, or gives most information.