python try except else finally 执行顺序详细分析...
分类:
编程语言 时间:
2014-06-05 11:43:56
阅读次数:
305
select p.id comperitorId,p.compcorp competitorName,
sum(case when c.kindname = 'ATM' then c.num else 0 end) atm,
sum(case when c.kindname = 'CRS' then c.num else 0 end) crs,
sum(case when c.kindname...
分类:
数据库 时间:
2014-06-03 03:12:09
阅读次数:
211
注意到数列只增不减,而题目中又明确说道my then exit(x) else
exit(y); end;procedure build(x,y,k:longint); var mid:longint; begin with t[k] do
begin l:=x;r:=y; if ...
分类:
Web程序 时间:
2014-06-02 14:01:28
阅读次数:
247
写了一个powershell脚本测试脚本,结果执行的时候报错
$a=Get-ContentC:\script.txt|select-string-pattern"ora"
if($a-eq$null)
{
write-host"error"
}
else
{
write-host"OK"
}
PSD:\>.\pshell.ps1
无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:
其他好文 时间:
2014-06-02 03:17:04
阅读次数:
244
if语句eg:#includeint main(void){ int age;
scanf("%d",&age); if(age>18){ printf("您已经是成年人了!"); }}if
-else语句eg:#includeint main(void){ int age; scanf("%...
分类:
其他好文 时间:
2014-06-02 01:44:09
阅读次数:
225
#ifdef DEBUG#define DLog(...)
NSLog(__VA_ARGS__)#else#define DLog(...) /* */#endif
分类:
其他好文 时间:
2014-06-02 00:46:07
阅读次数:
187
就如同C里的if else,while,do,repeat;就看lua里怎么用:
1、首先看if else
t = {1,2,3}
local i = 1
if t[i] and t[i] % 2 == 0 then
print("even")
else
print("odd")
end
lua木有C里的&&,而是and来表示;if 之后跟表达式,之后要更个then 最后语句结束都要...
分类:
其他好文 时间:
2014-06-01 18:13:48
阅读次数:
567
最近在代码中经常看到bind关键词,之前没用过啊,这里记录下。从微软复制过来的例子:
// Define the original function.
var checkNumericRange = function (value) {
if (typeof value !== 'number')
return false;
else
return...
分类:
编程语言 时间:
2014-06-01 04:51:27
阅读次数:
481
mysql 语句case whenselect USER_ID ,USER_NAME
,CASE WHEN atten.DESTINATION_ID is null THEN FALSE ELSE TRUE END as attentioned
from T_SD_USER as user...
分类:
数据库 时间:
2014-05-31 11:38:49
阅读次数:
313
#includeusing namespace std;//是否单调递增bool isdan(int
a[],int lev,int len){ if(len==1) return true; if(lev==len-1) { return true; }
else { if(a[lev]>a[le...
分类:
其他好文 时间:
2014-05-31 01:21:47
阅读次数:
257