Exceptions: An exception is transfer of control to the operating system in response to some event. exception processing by exception handler Process(进...
分类:
其他好文 时间:
2014-11-23 15:38:24
阅读次数:
271
常见的HTTP 1.1状态码以及它们对应的状态信息和含义100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分。(HTTP 1.1新)101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议(HTTP 1.1新)200 OK 一切正常,对GET和...
分类:
Web程序 时间:
2014-11-23 14:29:38
阅读次数:
277
Debug功能对于developer是非常重要的,python提供了相应的模块pdb让你可以在用文本编辑器写脚本的情况下进行debug. pdb是python debugger的简称。常用的一些命令如下:命令用途break 或 b设置断点continue 或 c继续执行程序list 或 l查看当前行...
分类:
数据库 时间:
2014-11-21 20:15:10
阅读次数:
348
function trimAll(str){ var string=''; var arr = []; for(var i=0;i<str.length;i++){ if(str.charCodeAt(i) == 32){ continue; }else{ ...
分类:
Web程序 时间:
2014-11-21 14:08:12
阅读次数:
147
In thefirst partof this tutorial, I have introduced the two most basic monads: the identity monad and the maybe monad. In this part, I will continue w...
分类:
其他好文 时间:
2014-11-21 12:32:50
阅读次数:
165
#include<stdio.h>
#include<ctype.h>
intmain(intargc,char**argv)
{
charch;
printf("Enterthewantyouwant:\n");
while((ch=getchar())!=‘#‘)
{
if(ch==‘\n‘)
continue;//改成break的话,直接回车就会跳出循环。
if(islower(ch))
switch(ch)
{
case‘a‘:puts("..
分类:
其他好文 时间:
2014-11-20 23:54:38
阅读次数:
189
一、数据库服务命令行net start mssqlserver →开启本机数据库服务net stop mssqlserver →停止本机数据库服务…… pause ……→暂停 …… continue…… →继续二、文件格式.mdf格式:数据库存储文件,有且只有一个,保存数据。.LDF格式:日志文件,...
分类:
数据库 时间:
2014-11-19 18:18:50
阅读次数:
172
local或者.:daibiao SQL链接本机服务器net start mssqlserver:开启数据库的启动net stop mssqlserver:关闭数据库的启动net pause mssqlserver:服务器的暂停net continue mssqlserver:服务器继续登陆名sa账...
分类:
数据库 时间:
2014-11-19 17:47:22
阅读次数:
256
net start mssqlserver 开启数据库;net stop mssqlserver 关闭数据库;net pause mssqlserver 暂停数据库;net continue mssqlserver 数据库继续语句;mdf:主文件; 主要文件有且只有一个,拓展名为mdf;ndf:次要...
分类:
数据库 时间:
2014-11-19 17:41:25
阅读次数:
296
auto 局部变量(自动储存)break无条件退出程序最内层循环case switch语句中选择项char单字节整型数据const定义不可更改的常量值continue中断本次循环,并转向下一次循环default switch语句中的默认选择项do 用于构成do.....while循环语句dou...
分类:
编程语言 时间:
2014-11-19 12:26:29
阅读次数:
183