代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/122681/14675774
po catch11.po
www.eeworm.com/read/122681/14675775
pr catch11.pr
www.eeworm.com/read/122681/14675777
ps catch11.ps
www.eeworm.com/read/122681/14675778
imb catch11.imb
www.eeworm.com/read/122681/14675779
pri catch11.pri
www.eeworm.com/read/119982/14814806
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/119982/14814833
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/119982/14814841
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/213912/15122474
m try_catch.m
%初始化数组
a=[1 -3 2 5];
try
% 显示某个元素
index=input('Enter subscript of element to display: ');
disp(['a(' int2str(index) ') = ' num2str(a(index))] );
catch
%如果发现出现错误
disp(['Illegal subscr