11

このコード(badcast.cpp)を検討してください。

#include <exception>
#include <typeinfo>
#include <stdio.h>

class foo {
public:
    virtual ~foo() {}
};

class bar: public foo {
public:
    int val;
    bar(): val(123) {}
};

static void
cast_test(const foo &f) {
    try {
        const bar &b = dynamic_cast<const bar &>(f);
        printf("%d\n", b.val);
    } catch (const std::bad_cast &) {
        printf("bad cast\n");
    }
}

int main() {
    foo f;
    cast_test(f);
    return 0;
}

FreeBSD 9.1:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
terminate called after throwing an instance of 'std::bad_cast'
  what():  std::bad_cast
Abort trap (core dumped)

$ g++ badcast.cpp -o badcast -frtti -fexceptions -Wall && ./badcast
terminate called after throwing an instance of 'std::bad_cast'
  what():  std::bad_cast
Abort trap (core dumped)

$ gcc -v
Using built-in specs.
Target: amd64-undermydesk-freebsd
Configured with: FreeBSD/amd64 system compiler
Thread model: posix
gcc version 4.2.1 20070831 patched [FreeBSD]

$ uname -a
FreeBSD freebsd9 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012     root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64

Debian Linux 6:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
bad cast

OS X 10.8:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
bad cast

なぜbad_castのキャッチがFreeBSDで機能しないのですか?

4

1 に答える 1

3

libc++大雑把な推測ですが、FreeBSDでは古い GNU の代わりにLLVM の new を使用している可能性がありますlibstdc++。FreeBSD は、GNU GPL ライセンスのソフトウェアから離れて、LLVM ツールチェーンへの切り替えに取り組んでいます。

Apple もそのように動いており、過去に Mac 向けの開発で(特に Boostを使っlibc++て) 問題に遭遇したことがあります。libstdc++

lddリンクしているライブラリを確認するために使用できます。

ldd ./badcast

に対してリンクしている場合は、バグとテスト ケースをLLVM プロジェクトlibc++に提出することをお勧めします。

于 2013-01-22T21:59:34.983 に答える