“和"是什么时候出现的?成为 C++ 中的运算符

When did quot;andquot; become an operator in C++(“和是什么时候出现的?成为 C++ 中的运算符)
本文介绍了“和"是什么时候出现的?成为 C++ 中的运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一些看起来像这样的代码:

I have some code that looks like:

static const std::string and(" AND ");

这会导致 g++ 中的错误,如下所示:

This causes an error in g++ like so:

Row.cpp:140: error: expected unqualified-id before '&&' token

所以在诅咒了将和"定义为&&的傻瓜之后,我添加了

so after cursing the fool that defined "and" as &&, I added

#ifdef and
#undef and
#endif

现在我明白了

Row.cpp:9:8: error: "and" cannot be used as a macro name as it is an operator in C++

这导致我的问题是和"何时成为 C++ 中的运算符?我找不到任何表明它的东西,当然除了来自 g++ 的这条消息

Which leads to my question of WHEN did "and" become an operator in C++? I can't find anything that indicates it is, except of course this message from g++

推荐答案

有几个在 C++ 中定义的此类替代方案.您可能可以使用开关来打开/关闭这些.

There are several such alternatives defined in C++. You can probably use switches to turn these on/off.

这篇关于“和"是什么时候出现的?成为 C++ 中的运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)