注:这是收集给公司同事学习的资料,入门级别的。 使用ASP.Net WebAPI构建REST服务(一)——简单的示例 使用ASP.Net WebAPI构建REST服务(一)——简单的示例 http://blog.csdn.net/mengzhengjie/article/details/523971 ...
{ //父类工作类 public abstract class Job { //工作类型 public string Type { get; set;} //工作名称 public string Name { get; set;} //描述 public string Description { g ...
分类:
其他好文 时间:
2017-04-12 20:44:31
阅读次数:
237
一、bytes类型 二、三元运算 如果条件为真:result = 值1如果条件为假:result = 值2 三、进制 二进制,01 八进制,01234567 十进制,0123456789 十六进制,0123456789ABCDEF 二进制到16进制转换http://jingyan.baidu.com ...
分类:
编程语言 时间:
2017-04-12 20:44:16
阅读次数:
188
DAL是指Data Access Layer。DALFactory是用于创建数据訪问对象的工厂。本质上是採用了抽象工厂的设计模式。目的是支持多种数据訪问层,比方sql server和oracle两种实现。同一时候又利用了.net的反射机制,通过配置文件就可以确定採用哪种数据訪问实现;IDAL是数据訪 ...
分类:
其他好文 时间:
2017-04-12 20:44:00
阅读次数:
195
运行这个html,监视任务管理器,发现在display:none 注释后性能下降至0,说明CSS3的动画效果不显示的时候是不消耗性能的。 ...
分类:
Web程序 时间:
2017-04-12 20:43:39
阅读次数:
686
#需求 定义无参装饰器为被装饰函数添加统计时间的功能 1 import time #导入时间模块 2 3 def timer(func): 4 def wapper(): 5 start = time.time() 6 func() 7 stop = time.time() 8 index_spen... ...
分类:
其他好文 时间:
2017-04-12 20:43:25
阅读次数:
181
Akemi Homura is a Mahou Shoujo (Puella Magi/Magical Girl). Homura wants to help her friend Madoka save the world. But because of the plot of the Boss ...
分类:
其他好文 时间:
2017-04-12 20:42:56
阅读次数:
215
转载:http://blog.csdn.net/linxingliang/article/details/51585921 此文章已经废弃,请看新版的博客的完美解决方案: 78. Spring Boot完美使用FastJson解析JSON数据【从零开始学Spring Boot】 http://412 ...
分类:
编程语言 时间:
2017-04-12 20:42:43
阅读次数:
289
今天上午前一个半小时做接力题典1800。后一个半小时上课,编译原理,老师,方红琴。 ...
分类:
其他好文 时间:
2017-04-12 20:42:26
阅读次数:
111
02-线性结构1 两个有序链表序列的合并 (15分) 编译器:gcc <!--Regular if2711--> 时间限制:400ms 内存限制:64MB 代码长度限制:16kB 判题程序:系统默认<!--Regular if2712--> 作者:DS课程组 单位:浙江大学 https://pta. ...
分类:
其他好文 时间:
2017-04-12 20:42:08
阅读次数:
254
1. 实验要求实验目的安装虚拟机,并安装一套LAMP(Linux+Apache+Mysql+PHP)待测系统,推荐ECShop(http://www.ecshop.com),基于此进行Jmeter压力测试,并在测试后得出Jmeter测试报告,并根据sysstat得出Linux服务器的CIMN(CPU ...
分类:
其他好文 时间:
2017-04-12 20:41:55
阅读次数:
248
-|rw-| | . 1 root root 1771 4月 28 2015 anaconda-ks.cfg ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ①:文件类型 - 文件 d 目录 l 链接 ②:所有者权限(u) r 读 4 w 写 2 x 执行 1 ③:所属组权限(g) r 读 4 w 写 2 x ...
分类:
其他好文 时间:
2017-04-12 20:41:43
阅读次数:
194
pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。 ...
分类:
其他好文 时间:
2017-04-12 20:41:11
阅读次数:
163
创建一个Kafka的主题,连接到zk集群,副本因子3,分区3,主题名是test111 [root@h5 kafka]# bin/kafka-topics.sh --create --zookeeper h5:2181 --topic test111 --replication-factor 3 -- ...
分类:
编程语言 时间:
2017-04-12 20:40:53
阅读次数:
233
1 def menu(): 2 #用户交互界面 3 user_name = input("请输入在用户名:") 4 password = input("请输入密码:") 5 return user_name,password #以元组形式返回值 6 ''' 7 alex1 1111 8 alex2 ...
分类:
其他好文 时间:
2017-04-12 20:40:31
阅读次数:
199
分析:按位贪心即可。 program sleep; var a,g:array[0..150000]of longint; n,i,m,ans,t,len,x,y,v:longint; c:char; s:string; e:boolean; function cheak(x,y:longint): ...
分类:
其他好文 时间:
2017-04-12 20:39:52
阅读次数:
156
java中数组的定义:字符串数组:1、String[] str=new String[5];2、String[] str=new String[]{"a","b"};3、String[] str={"a","b"};整形数组:1、int[] i=new int[5];2、int[] i=new in ...
分类:
编程语言 时间:
2017-04-12 20:39:35
阅读次数:
169