using std::cout;using std::endl;using std::string;using std::vector;using std::size_type;
是否有可能以某种方式避免每次都写出公共部分?像这样的东西:
USING(std,cout,endl,string,vector,size_type);
我在考虑一个var-arg宏,但不知道是否有可能迭代那些var args.
解决方法 你可以为你的代码使用命名空间,你需要std :: cout,std :: endl,std :: …例:
#include <iostream>namespace my { using std::cout; using std::endl;}int main() { using namespace my; cout << "hello" << endl;}总结
以上是内存溢出为你收集整理的C宏重复使用std :: xyz语句全部内容,希望文章能够帮你解决C宏重复使用std :: xyz语句所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)