首页 > 2016年02月24日 > 全部分享
黑马程序员——————> 异常处理之抛出
------- android培训、java培训、期待与您交流! ---------- java的异常被分类为两大类,Checked异常和Runtime异常(运行时异常)。所有的RuntimeException类及其子类的实例被称为Runtime异常;不是RuntimeException类及其子类的
分类:其他   时间:2016-02-24 09:19:34    收藏:0  评论:0  赞:0  阅读:334
win32api 找不到指定的模块
pywin32 安装后 import win32api 出现ImportError: DLL load failed: 找不到指定的模块 解决方法: 拷贝 C:\Python26\Lib\site-packages\pywin32_system32\* 至 C:\Windows\System32
分类:Windows开发   时间:2016-02-24 09:19:23    收藏:0  评论:0  赞:0  阅读:418
Redis代码阅读之Hacking Strings
Hacking Strings The implementation of Redis strings is contained in sds.c ( sds stands for Simple Dynamic Strings ).The C structure sdshdr declared in
分类:其他   时间:2016-02-24 09:19:14    收藏:0  评论:0  赞:0  阅读:440
jQuery.form开发手记
介绍使用API说明ajaxFormajaxSubmitfieldSerializeresetFormclearFormclearFields参数示例 一般情况下其实提交表单我们将数据$("form").serialize()序列化之后用$.ajax,$.post就可以实现,但是jQuery自带的方法
分类:Web开发   时间:2016-02-24 09:19:04    收藏:0  评论:0  赞:0  阅读:349
dede 转 帝国
1.转换栏目 insert into ak_enewsclass (classid,bclassid,classname,myorder,classpath,intro,classpagekey) select id,reid,typename,sortrank,typedir,descriptio
分类:其他   时间:2016-02-24 09:18:54    收藏:0  评论:0  赞:0  阅读:316
实现DevExpress GridControl 只有鼠标双击后才进行修改数据
1. 实现DevExpress GridControl 只有鼠标双击后才进行修改数据:修改GridView.OptionsBehavior.EditorShowMode属性为Click 2. 实现DevExpress GridControl 只有鼠标双击后才进行修改数据:修改GridView.Opt
分类:其他   时间:2016-02-24 09:18:44    收藏:0  评论:0  赞:0  阅读:2446
[Cycle.js] Hello World in Cycle.js
Now you should have a good idea what Cycle.run does, and what the DOM Driver is. In this lesson, we will not build a toy version of Cycle.js anymore.
分类:Web开发   时间:2016-02-24 09:18:34    收藏:0  评论:0  赞:0  阅读:286
大物复习
分类:其他   时间:2016-02-24 09:18:24    收藏:0  评论:0  赞:0  阅读:393
【CodeForces 626C】Block Towers
题意 给你n,m,如果 n个2的倍数和m个3的倍数,这n+m个数各不相同,那么求最大的数的最小值。 分析 方法1:枚举最大值为i,直到 i/2+i/3-i/6(不重复的2或3的倍数)≥n+m,并且要i/2(2的倍数)≥n,i/3(3的倍数)≥m。 方法2:枚举重复的数字i,i最小为6,每次增加6,设
分类:其他   时间:2016-02-24 09:18:13    收藏:0  评论:0  赞:0  阅读:776
[Cycle.js] From toy DOM Driver to real DOM Driver
This lessons shows how we are able to easily swap our toy DOM Driver with the actual Cycle.js DOM Driver, a more solid, more flexible, more efficient
分类:Web开发   时间:2016-02-24 09:18:03    收藏:0  评论:0  赞:0  阅读:317
安卓课程设计--利用socket在电脑和手机之间实现简单云盘
下面是服务端的代码 package lyj.srever; public class Server { public static void main(String[] args) { new ServerThread().start(); } } package lyj.srever; impor
分类:移动平台   时间:2016-02-24 09:17:54    收藏:0  评论:0  赞:0  阅读:409
黑马程序员——————> 异常处理之修复
------- android培训、java培训、期待与您交流! ---------- java的异常机制主要依赖于try, catch, finally, throw, throws五个关键字,其中try关键字后紧跟一个花括号扩起来的代码块,简称try块,它里面放置可能引发异常的代码。catch后
分类:其他   时间:2016-02-24 09:17:34    收藏:0  评论:0  赞:0  阅读:371
1372条   上一页 1 ... 67 68 69
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!