我用C#写了以下几行
using System;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
extern static uint _controlfp(uint newcw, uint mask);
const uint _MCW_EM = 0x0008001f;
public const uint EM_INVALID = 0x00000010;
public const uint EM_DENORMAL = 0x00080000;
public const uint EM_ZERODIVIDE = 0x00000008;
public const uint EM_OVERFLOW = 0x00000004;
public const uint EM_UNDERFLOW = 0x00000002;
public const uint EM_INEXACT = 0x00000001;
static void MaskFpu(uint pExceptionMask = EM_INVALID)
{
// add desired values
_controlfp(_MCW_EM, pExceptionMask);
}
static void Main(string[] args)
{
MaskFpu(EM_ZERODIVIDE);
int a = 0;
var b = 5/a;
Console.WriteLine("b = " + b);
}
}
}主要方法从设置控制字开始。显然,我想让DivideByZeroExceptions蒙上面具。
在执行_controlfp之后,我希望除以零将返回NaN。但是var b = 5 / a却引发了一个异常。
我如何才能真正地阻止我的过程提高DivideByZeroExceptions?
发布于 2015-06-02 09:54:52
int a = 0;
var b = 5/a;您在这里执行整数运算,因此掩蔽浮点异常对此表达式没有任何影响。
https://stackoverflow.com/questions/30592060
复制相似问题