C宏重复使用std :: xyz语句

C宏重复使用std :: xyz语句,第1张

概述有时我的文件看起来像这样: 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-a 有时我的文件看起来像这样:

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语句所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1215354.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存