In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
What is the reason for avoiding using macros to define constants or functions in C++? for this problem, this article introduces the corresponding analysis and solutions in detail, hoping to help more partners who want to solve this problem to find a more simple and feasible way.
ES.31: do not use macros to define constants or functions
Reason (reason)
Macros are a major source of bugs. Macros don't obey the usual scope and type rules. Macros don't obey the usual rules for argument passing. Macros ensure that the human reader sees something different from what the compiler sees. Macros complicate tool building.
Macros are one of the main sources of errors. Macros do not follow the usual scope and type guidelines. Macros also do not follow parameter-passing guidelines. Macros provide people with a perspective that is somewhat different from the compiler perspective. Macros make tool construction more complex.
Example, bad (negative example)
# define PI 3.14#define SQUARE (a, b) (a * b)
Even if we hadn't left a well-known bug in SQUARE there are much better behaved alternatives; for example:
Although there are no known errors in the SQUARE definition, there are other options that can work better.
Constexpr double pi = 3.14
Template T square (T a, T b) {return a * b;}
The answer to the question about why C++ avoids using macros to define constants or functions is shared here. I hope the above content can be of some help to you, if you still have a lot of doubts to be solved. You can follow the industry information channel for more related knowledge.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.