代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/206867/15286778
cpp catch_ml.cpp
#include
void XHandler(int test)
{
try
{
if(test==0) throw test;
if(test==1) throw 'a';
if(test==2) throw 123.23;
}
catch(...)
{
co
www.eeworm.com/read/206867/15286805
cpp catch_dz.cpp
#include
void divide(double a, double b)
{
try {
if(!b) throw b; // checks for divide-by-zero
cout
www.eeworm.com/read/206867/15286813
cpp catch_3.cpp
#include
void XHandler(int test)
{
try
{
if(test==0) throw test;
if(test==1) throw "String";
if(test==2) throw 123.23;
}
catch(int i)
{
www.eeworm.com/read/8653/149666
png signal.catch.png
www.eeworm.com/read/35001/1050553
png signal.catch.png
www.eeworm.com/read/482889/1283016
hpp catch_exceptions.hpp
// boost/catch_exceptions.hpp -----------------------------------------------//
// Copyright Beman Dawes 1995-2001. Distributed under the Boost
// Software License, Version 1.0. (See accompany
www.eeworm.com/read/479931/1328057
exp catch_ex.exp
# Copyright 2007, 2008 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/479931/1328851
cc try_catch.cc
/* This test script is part of GDB, the GNU debugger.
Copyright 2002, 2004,
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under t