代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/141545/13001473
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/141545/13001567
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/141545/13001593
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/301913/13845966
c catch_singal.c
#include
#include
#include
#include
char *id = "SIGINT come from key interruption: intr = ^C\n";
int count=0;
static void catch_signal(int sig){
www.eeworm.com/read/238485/13882600
c sig_catch.c
#include
#include "sig.h"
#include "hassgact.h"
void sig_catch(sig,f)
int sig;
void (*f)();
{
#ifdef HASSIGACTION
struct sigaction sa;
sa.sa_handler = f;
sa.sa_flags = 0;
sigemptys
www.eeworm.com/read/139332/5800912
hpp catch_exceptions.hpp
// boost/catch_exceptions.hpp -----------------------------------------------//
// Copyright Beman Dawes 1995-2001. Distributed under the Boost
// Software License, Version 1.0. (See accompanying
www.eeworm.com/read/136812/5860598
c catch_signals.c
#ifndef lint
static char sccsid[] = "@(#)catch_signals.c 1.1 92/07/30 Copyr 1990 Sun Micro";
#endif
/*
* Copyright (c) 1990 by Sun Microsystems, Inc.
*/
#include
#include
#i