代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/378183/9247957
dat vfpdat13b.dat
例题: RELEASE a,b &&清除内存变量a和b
---- RELEASE ALL &&清除用户定义的所有内存变量
RELEASE ALL LIKE a* &&清除所有首字母为A的内存变量
RELEASE ALL EXCEPT? b* &&清除除第二个字符为B以外的所有内存
www.eeworm.com/read/178378/9405019
makefile egcs.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 C23
www.eeworm.com/read/374083/9421517
mak tmt.mak
OBJ = fft.o evalue.o submat.o cholesky.o hholder.o sort.o newmatrm.o \
jacobi.o tmtf.o svd.o tmte.o tmtd.o newmat8.o tmtc.o tmtb.o \
newmat7.o newmat6.o newmat5.o newmat3.o newmat
www.eeworm.com/read/374083/9421580
mak example.mak
OBJ = example.o \
cholesky.o evalue.o fft.o hholder.o jacobi.o \
newmat1.o newmat2.o newmat3.o newmat4.o newmat5.o \
newm
www.eeworm.com/read/177586/9446455
py hash.py
# use the new fast hash functions if available
try:
import hashlib
sha = hashlib.sha1
except ImportError:
import sha as shalib
sha = shalib.sha
www.eeworm.com/read/373494/9453775
pas partpositionunit.pas
unit PartPositionUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, DBGrids, StdCtrls, DBCtrls, Mask, Buttons, ToolWin,
ComC
www.eeworm.com/read/177265/9462355
pas lookdatabaseform.pas
unit LookDatabaseForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DialogBaseForm, StdCtrls, Buttons, ExtCtrls, Grids, DBGrids, Db, DBTables,
www.eeworm.com/read/366268/9821934
bak main.c.bak
/****************************************************************************
Filename:main.c
programmer:zhang chen
Description:程序异常处理。用于13xx 14xx 15xx 16xx系列。
MCLK:DCO ACLK:32.768kHz
版本变更
www.eeworm.com/read/366268/9821935
c main.c
/****************************************************************************
文件名:main.c
编写者:czhang
描述:程序异常处理。用于13xx 14xx 15xx 16xx系列。
MCLK:DCO ACLK:32.768kHz
版本:2005-4 V1.0
************
www.eeworm.com/read/366044/9836109
pas u_function.pas
unit u_Function;
interface
uses
ADODB, SysUtils, Registry, Windows, Classes, IniFiles;
function ExecSql(sSql : String ; var qry : TADOQuery) : Boolean;
function OpenSql(sSql : String ; va