?? testexceptinclude.cpp
字號:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2002 * Sleepycat Software. All rights reserved. * * $Id: TestExceptInclude.cpp,v 1.4 2002/07/05 22:17:59 dda Exp $ *//* We should be able to include cxx_except.h without db_cxx.h, * and use the DbException class. We do need db.h to get a few * typedefs defined that the DbException classes use. * * This program does nothing, it's just here to make sure * the compilation works. */#include <db.h>#include <cxx_except.h>int main(int argc, char *argv[]){ DbException *dbe = new DbException("something"); DbMemoryException *dbme = new DbMemoryException("anything"); dbe = dbme;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -