码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
IIS7.x经典模式与集成模式
参考文档:http://book.51cto.com/art/200908/146143.htm个人理解:经典模式:在IIS6中aspnet_isapi.dll只是ISAPI的一个实现,对asp.net页面的请求都是映射到aspnet_isapi.dll处理的集成模式:IIS7以后asp.net已经...
分类:其他好文   时间:2015-07-01 18:02:26    阅读次数:106
使用AutoMapper
一、AutoMapper初探:[参考Using AutoMapper: Getting Started]1.新建空的ASP.NET MVC项目。2.在Models文件夹添加类: public class Book { public string Title { get; s...
分类:移动开发   时间:2015-07-01 17:43:37    阅读次数:328
ArrayList用法入门
ArrayList用法:ArrayList是接口List的实现类,所以推荐以List接口来使用。1、创建ArrayList的List接口例:List books = new ArrayList();Java支持泛形后,创建的同时可以指定元素的类型。例:Class Book {......}List ...
分类:其他好文   时间:2015-07-01 17:23:57    阅读次数:122
使用AngularJS开发下一代Web应用
原版的:https://github.com/edagarli/AngularJSWeb来源书:https://github.com/shyamseshadri/angularjs-book 版权声明:本文博客原创文章,博客,未经同意,...
分类:Web程序   时间:2015-07-01 15:47:31    阅读次数:162
【书单】book list
正在看:[泡沫经济学].(日)野口悠纪雄PostgreSQL从入门到精通数学模型--姜启源准备看:Deep Learning: A Practitioner's ApproachFundamentals of Deep Learning: Designing Next-Generation Arti...
分类:其他好文   时间:2015-06-30 10:04:25    阅读次数:146
推荐一个计算机视觉图书:python计算机视觉编程
编辑部的主页:好像没啥用 http://shop.oreilly.com/product/0636920022923.do 每章的代码,github上面的:中文版 https://github.com/willard-yuan/pcv-book-code github上面,英文版: https://github.com/jesolem/PCV 项目主页:...
分类:编程语言   时间:2015-06-29 22:17:28    阅读次数:198
mongodb固定集合,建立管理员安全验证
建立普通集合db.createCollections aaa;建立固定集合名称book capped true 固定集合 size大小 max:文档数量db.createCollection("book",{capped:true,size:10000,max:5}) "capped" : fals...
分类:数据库   时间:2015-06-29 06:19:06    阅读次数:179
c++学习-链表
静态链表:#include#includeusing namespace std;struct book{ int num; float price; struct book *next;};int main(){ book x, y, z, *head, *p; x ...
分类:编程语言   时间:2015-06-28 14:04:35    阅读次数:87
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!