catch没有捕获c ++异常(异常类型)

时间:2013-10-02 01:26:13

标签: c++ exception

以下是我的例外代码:

try {
        hashTable->lookup(bufDescTable[clockHand].file, bufDescTable[clockHand].pageNo, dummyFrame);
    }
    catch (HashNotFoundException *e) {

    }
    catch (HashNotFoundException &e) {

    }
    catch (HashNotFoundException e) {

    }
    catch (...) {

    }

在hashTable->查找中生成异常,如:

throw HashNotFoundException(file->filename(), pageNo);

这是hashTable-lookup方法签名

 void BufHashTbl::lookup(const File* file, const PageId pageNo, FrameId &frameNo)  

异常升级到最高级别,就像没有人做生意一样。

我正在使用Mac(Lion)和Xcode(g ++ for compiler)

任何想法都会受到赞赏。

谢谢!

1 个答案:

答案 0 :(得分:1)

我们确实需要一个完整的示例/更多信息来为您诊断。

例如,以下版本的代码编译并适用于我,输出HashNotFoundException &

请注意,代码与原始代码有一些细微的变化,但它们不应该是重要的。

但它会产生以下警告:

example.cpp: In function ‘int main()’:
example.cpp:42: warning: exception of type ‘HashNotFoundException’ will be caught
example.cpp:38: warning:    by earlier handler for ‘HashNotFoundException’

我正在OS X 10.8.5上使用i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)进行编译

#include <iostream>
#include <sstream>

struct BadgerDbException {};
struct PageId {};
struct FrameId {};

struct HashNotFoundException : public BadgerDbException {
  std::string name;
  PageId pageNo;
  HashNotFoundException(const std::string& nameIn, PageId pageNoIn)
    : BadgerDbException(), name(nameIn), pageNo(pageNoIn) {
    }
};

struct HashTable {
  void lookup(void* file, const PageId pageNo, FrameId &frameNo) {
    throw HashNotFoundException("a file", pageNo);
  }
};    

int main() {
  HashTable * hashTable = new HashTable;
  PageId a_Page_ID;
  FrameId dummyFrame;
  try {
    FrameId dummyFrame;
    hashTable->lookup(NULL, a_Page_ID, dummyFrame);
  }
  catch (HashNotFoundException *e) { std::cout<<"HashNotFoundException *"<<std::endl;}
  catch (HashNotFoundException &e) { std::cout<<"HashNotFoundException &"<<std::endl;}
  catch (HashNotFoundException e)  { std::cout<<"HashNotFoundException"<<std::endl; }
  catch (...)                      { std::cout<<"... exception"<<std::endl; }
}