本文转载自:技术小黑屋 和Java一样,python也提供了对于checked exception和unchecked exception. 对于checked exception,我们通常使用try except可以显示解决,对于unchecked 异常,其实也是提供回调或者是钩子来帮...
分类:
编程语言 时间:
2014-07-22 08:13:36
阅读次数:
232
UVA 10689 - Yet another Number Sequence
题目链接
题意:斐波那契给前两项,求出第n项,并保留m位
思路:挺裸的矩阵快速幂,就是取模的值是10^m
代码:
#include
#include
const int mod[5] = {0, 10, 100, 1000, 10000};
int t, a, b, n, m;
s...
分类:
其他好文 时间:
2014-07-22 00:31:37
阅读次数:
279
This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'的意思是,这版本的 MySQL 不支持使用 LIMIT 子句的 IN/ALL/ANY/SOME 子查询,即是支持非 IN/ALL/ANY/SOME ...
分类:
数据库 时间:
2014-07-21 14:13:39
阅读次数:
238
我们项目后台操作中不可避免的会有同时删除多项的操作,本文实现的就是当点击全选时,选定当前页中所有项,当取消了某一项的选定,则“全选”CheckBox的checked也为false;然后在后台中取到所选定的项的ID,实现同时删除多项的功能。前台代码Code highlighting produced ...
分类:
其他好文 时间:
2014-07-19 18:08:23
阅读次数:
242
如果用一个checkbox被选中,alert这个checkbox的属性"checked"的值alert($"#xxx".attr("checked")),会打印出"true",而不是"checked"!
分类:
Web程序 时间:
2014-07-19 11:27:45
阅读次数:
202
Counting
The Problem
Gustavo knows how to count, but he is now learning how write numbers. As he is a very good student, he already learned 1, 2, 3 and 4. But he didn't realize yet tha...
分类:
其他好文 时间:
2014-07-18 22:04:36
阅读次数:
322
APPLIES TO:PL/SQL - Version 9.2.0.1 to 12.1.0.1 [Release 9.2 to 12.1]Information in this document applies to any platform.***Checked for relevance on ...
分类:
其他好文 时间:
2014-07-18 18:27:07
阅读次数:
273
APPLIES TO:PL/SQL - Version 10.1.0.2 and laterInformation in this document applies to any platform."Checked for relevance on 06-Mar-2012"GOALThis note...
分类:
其他好文 时间:
2014-07-18 15:04:26
阅读次数:
253
var objs = document.getElementsByTagName("input");
for (var i = 0; i < objs.length; i++) {
if (objs[i].type.toLowerCase() == "checkbox" && objs[i].checked)
alert(objs[i].value);
}...
分类:
Web程序 时间:
2014-07-18 11:22:10
阅读次数:
218
谁都知道 在html 如果一个复选框被选中 是 checked="checked"。但是我们如果用jquery alert($("#id").attr("checked")) 会提示您是true而不是checked所以很多朋友判断 if($("#id").attr("checked")=="true...
分类:
Web程序 时间:
2014-07-17 10:05:00
阅读次数:
261