宏重新定义的警告

时间:2017-01-22 16:29:42

标签: c macros warnings

我正在编写此代码,当我尝试编译时会出现警告。

#include <stdio.h>
#include <math.h>
#define EPS 1.5e-6
#define M_PI 3.14159265358979
int main()
{
double x1,x2,xm,y1,y2,ym; 
int m;
for(m=0;m<11;m++){
        x1=1.450;
        x2=1.489;
        y1=atan(pow(x1*x1-1.5*1.5,0.5)/pow(1.489*1.489-x1*x1,0.5))\
        + atan(pow(x1*x1-1.450*1.450,0.5)/pow(1.489*1.489-x1*x1,0.5))\
        - 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-x1*x1,0.5)\
        + m*M_PI*1.5;
        y2=atan(pow(x2*x2-1.5*1.5,0.5)/pow(1.489*1.489-x2*x2,0.5))\
        + atan(pow(x2*x2-1.450*1.450,0.5)/pow(1.489*1.489-x2*x2,0.5))\
        - 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-x2*x2,0.5)\
        + m*M_PI*1.5;
        if(y1*y2>0){
                printf("change initial values\n");
             }
        else{
        while(fabs(x1-x2)>EPS){
        xm=(x1+x2)/2;
        ym=atan(pow(xm*xm-1.5*1.5,0.5)/pow(1.489*1.489-xm*xm,0.5))\
        + atan(pow(xm*xm-1.450*1.450,0.5)/pow(1.489*1.489-xm*xm,0.5))\
        - 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-xm*xm,0.5)\
        + m*M_PI*1.5;
        if(y1*ym>0){
 x1=xm;
 }
else{
x2=xm;
}
        }
        printf("n[%d] = %.9f;\n",m, xm);
}
}
return 0; }

警告是:

  

警告:'M_PI'宏已重新定义[-Wmacro-redefined]

我无法弄清楚如何使警告消失

2 个答案:

答案 0 :(得分:1)

如果您想要使用的宏已经被定义(并且可能被定义为有用的值),那么您可以简单地检查:

#ifndef M_PI
#  define M_PI my_value_here
#endif

或者,如果您不相信现有价值,那么您可以在这种情况下中止翻译:

#ifdef M_PI
#  error Macro M_PI must not be defined
#else
#  define M_PI my_value_here
#endif

似乎GNU C library定义了这些宏(有条件地),因为&#34; Unix98标准&#34;要求他们。

答案 1 :(得分:1)

POSIX definesM_PI作为Pi的值作为C标准的扩展。因此,如果您使用POSIX系统,则无需定义自己的M_PI

但是如果你不想那么你只能在标准C模式下编译,例如:

gcc -Wall -Wextra -std=c11 file.c