5

这是一些不会因复杂性而获奖的代码:

[<EntryPoint>]
let main argv =
   let i = 1I
   printfn "One is %A\n" i
   0 // return an integer exit code

编译如下:“c:/Program Files (x86)/Microsoft SDKs/F#/3.0/Framework/v4.0/Fsc.exe” --out:numericstest.exe --debug:full --target:exe - -独立程序.fs

在 Windows 下,它会产生预期的结果。然而,在 Ubuntu 下编译的 Mono 3.0.7 下,它改为:

mono numericstest.exe

Unhandled Exception: System.InvalidProgramException: Invalid IL code in System.Numerics.BigInteger:get_One (): method body is empty.

at Program.main (System.String[] argv) [0x00000] in <filename unknown>:0[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidProgramException: Invalid IL code in System.Numerics.BigInteger:get_One (): method body is empty.

at Program.main (System.String[] argv) [0x00000] in <filename unknown>:0

请问我做错了什么?非常感谢。

4

1 回答 1

2

您的代码没有任何问题 -无论如何,该异常是由于您的代码造成的。System.Numerics.dll您的机器上的组件似乎有问题;要么没有正确安装,要么编译不正确(例如,由 Mono C# 编译器),要么正在执行某种类型的转发,但不能正常工作,等等。

如果您在不使用 BigInteger(通过I后缀)的情况下运行代码会发生什么?


我在 VirtualBox 下运行的 Ubuntu(12.04,32 位)VM 中尝试了您的代码。代码按预期编译并运行。如果需要,这是输出:

编译/运行

jack@jack-linux:~/Desktop$ fsharpc --out:JoeHuha.exe --debug:full --target:exe --standalone JoeHuha.fs
F# Compiler for F# 3.0 (Open Source Edition)
Freely distributed under the Apache 2.0 Open Source License
jack@jack-linux:~/Desktop$ mono JoeHuha.exe
One is 1

单声道版本信息

jack@jack-linux:~/Desktop$ mono -V
Mono JIT compiler version 3.0.5 (master/1643364 Fri Feb 22 19:31:07 EST 2013)
Copyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
    TLS:           __thread
    SIGSEGV:       altstack
    Notifications: epoll
    Architecture:  x86
    Disabled:      none
    Misc:          softdebug 
    LLVM:          supported, not enabled.
    GC:            Included Boehm (with typed GC and Parallel Mark)
于 2013-04-26T22:55:42.433 回答