NDK错误:使用未声明的标识符' __ min'

时间:2017-08-06 17:54:18

标签: android c++ android-ndk

我已经使用min和__min进行了测试,并且在所有情况下它都告诉我它没有被声明。有谁知道它可以来自哪里?

enter image description here

 if(x1 > 0 && x2 >0)
   sol = __min(x1,x2);
   //sol=min(x1,x2);
else
  if(x1<0 && x2 <0)
     sol = -1; 
  else
    if(x1 > 0)
        if(coefA > 0)
          if(x1>MIXMIN)
            sol=-2;    
          else
            sol = x1;
        else
            if(x1 > LIMITEQMAX)
                sol=-2;    
            else
                sol = x1;
    else
       if(x2>MIXMIN)
           if(coefA > 0)
               if(x2>MIXMIN)
                  sol=-2;  
               else
                 sol = x2;
           else
               if(x2>LIMITEQMAX)
                   sol=-2;
               else
                   sol=x2;
return sol;

}

1 个答案:

答案 0 :(得分:0)

math.h 声明

<script type="text/javascript">
function openModal() {
    $('#acceptModal').modal('show');
}
</script>

除了STL之外,这是您在系统标题中可以找到的最佳效果。