Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我听说您可以在编译期间使用 g++ 的 -DN 标志在 c++ 程序中设置值。谁能解释一下如何?谢谢
-DXXXflag 就像添加#define XXX. -DN=2就像#define N 2. _
-DXXX
#define XXX
-DN=2
#define N 2
您可以在编译期间使用此标志传递值。
参考: