Is the position still open? I sent you a message to your private inbox, would you please take a look?
d*p
6 楼
If namespace name is too long, like use namespace this_is_really_a_long_namespace; use shorthand form namespace this_is_really_a_long_namespace = now_short; I even suggest more aggressive form: always qualify each namespace entity individually. In collaborative dev environment, this minimizes the chance your code collides with some unknowns.
Second you. Moreover, typing something like std:: brings IntelliSense.
【在 d****p 的大作中提到】 : If namespace name is too long, like : use namespace this_is_really_a_long_namespace; : use shorthand form : namespace this_is_really_a_long_namespace = now_short; : I even suggest more aggressive form: always qualify each namespace entity : individually. In collaborative dev environment, this minimizes the chance : your code collides with some unknowns.