代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/148694/5712057
cc exception.cc
// Test file for exception handling support.
#include
int foo (int i)
{
if (i < 32)
throw (int) 13;
else
return i * 2;
}
extern "C" int bar (int k, unsigned long eharg, int
www.eeworm.com/read/139903/5796081
makefile gcc.makefile
# From Thinking in C++, 2nd Edition
# At http://www.BruceEckel.com
# (c) Bruce Eckel 1999
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE
# For examples in directory C07
www.eeworm.com/read/136812/5858304
s pow.s
/
/ .data
/ .asciz "@(#)pow.s 1.1 92/07/30 SMI"
/ .even
/ .text
/
/ Copyright (c) 1988 by Sun Microsystems, Inc.
/ Note : 0^NaN should not signal "invalid" but this implementation
/ does because y
www.eeworm.com/read/125688/6023886
c fplib_libc.c
/* $NetBSD: fplib_libc.c,v 1.2 1997/10/13 21:28:53 mark Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to
www.eeworm.com/read/124553/6045708
pas sample - string char.pas
var
S: string;
begin
//S := '1234567890';
S := '';
try
Result := S[11];
except
on E: ERangeError do
Result := 'error';
end;
end;
www.eeworm.com/read/120487/6073514
out union.out
--
-- UNION (also INTERSECT, EXCEPT)
--
-- Simple UNION constructs
SELECT 1 AS two UNION SELECT 2;
two
-----
1
2
(2 rows)
SELECT 1 AS one UNION SELECT 1;
one
-----
1
(1 row)
SELECT 1 AS
www.eeworm.com/read/117181/6110963
cc exception.cc
// Test file for exception handling support.
#include
int foo (int i)
{
if (i < 32)
throw (int) 13;
else
return i * 2;
}
extern "C" int bar (int k, unsigned long eharg, int
www.eeworm.com/read/107372/6189530
pas autoctl.pas
unit AutoCtl;
{这个程序演示了使用Word作为自动化服务器,Delphi地自动化控制器是如何将一个查询结果插入到word文档中}
interface
uses Windows, Classes, SysUtils, Graphics, Forms, Controls, DB, DBGrids,
DBTables, Grids, StdCtrls, ExtCtrl
www.eeworm.com/read/102289/6234045
java clientconnection.java
/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1
www.eeworm.com/read/101082/6243318
1a l34.1a
#print
You can also specify "all characters except ..."
using an expression of the form
[^ab]
which means "anything except an 'a' or 'b' character".
Will
s/ab[^cde]/xyz23/p
change
xbcabfgh
Typ