上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 74 下一页

2014年12月9日

关于JavaScript中计算精度丢失的问题

摘要: 摘要: 由于计算机是用二进制来存储和处理数字,不能精确表示浮点数,而JavaScript中没有相应的封装类来处理浮点数运算,直接计算会导致运算精度丢失。 为了避免产生精度差异,把需要计算的数字升级(乘以10的n次幂)成计算机能够精确识别的整数,等计算完毕再降级(除以10的n次幂),这是大部分编程... 阅读全文

posted @ 2014-12-09 15:28 itjeff 阅读(7870) 评论(0) 推荐(2) 编辑

2014年12月8日

TotoiseSVN的基本使用方法

摘要: TotoiseSVN的基本使用方法在 项目管理实践教程一、工欲善其事,必先利其器【Basic Tools】中,我已经讲解了怎样安装TortoiseSVN。在上面的讲解中已经讲了怎么使用VisualSVN Server了,今天我要讲的是,TortoiseSVN的简单使用方法。一、签入源代码到SVN服务... 阅读全文

posted @ 2014-12-08 16:09 itjeff 阅读(1854) 评论(0) 推荐(0) 编辑

2014年12月5日

.net反射详解

摘要: 概述反射通过反射可以提供类型信息,从而使得我们开发人员在运行时能够利用这些信息构造和使用对象。反射机制允许程序在执行过程中动态地添加各种功能。运行时类型标识运行时类型标识(RTTI),可以在程序执行期间判定对象类型。例如使用它能够确切地知道基类引用指向了什么类型对象。运行时类型标识,能预先测试某个强... 阅读全文

posted @ 2014-12-05 16:42 itjeff 阅读(231) 评论(0) 推荐(0) 编辑

2014年12月4日

.NET中IDisposable接口的基本使用

摘要: 首先来看MSDN中关于这个接口的说明:[ComVisible(true)]public interface IDisposable{ // Methods void Dispose();}1.[ComVisible(true)]:指示该托管类型对 COM 是可见的.2.此接口的主要用途是... 阅读全文

posted @ 2014-12-04 17:38 itjeff 阅读(523) 评论(0) 推荐(0) 编辑

2014年12月3日

Contoso 大学 - 10 - 高级 EF 应用场景

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/advanced-entity-framework-scenarios-for-an-mvc-web-application全文目录:Contoso 大学 ... 阅读全文

posted @ 2014-12-03 17:41 itjeff 阅读(249) 评论(0) 推荐(0) 编辑

Contoso 大学 - 9 - 实现仓储和工作单元模式

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-applic... 阅读全文

posted @ 2014-12-03 17:40 itjeff 阅读(652) 评论(0) 推荐(0) 编辑

Contoso 大学 - 8 – 实现继承

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-inheritance-with-the-entity-framework-in-an-asp-net-mvc-applicati... 阅读全文

posted @ 2014-12-03 17:39 itjeff 阅读(240) 评论(0) 推荐(0) 编辑

Contoso 大学 - 7 – 处理并发

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application全文... 阅读全文

posted @ 2014-12-03 17:38 itjeff 阅读(287) 评论(0) 推荐(0) 编辑

Contoso 大学 - 6 – 更新关联数据

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/updating-related-data-with-the-entity-framework-in-an-asp-net-mvc-application全... 阅读全文

posted @ 2014-12-03 17:37 itjeff 阅读(300) 评论(0) 推荐(0) 编辑

Contoso 大学 - 5 – 读取关联数据

摘要: 原文地址:http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/reading-related-data-with-the-entity-framework-in-an-asp-net-mvc-application全文... 阅读全文

posted @ 2014-12-03 17:36 itjeff 阅读(278) 评论(0) 推荐(0) 编辑

上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 74 下一页

导航