摘要: js中的|| 与 && a && b : 将a, b转换为Boolean类型, 再执行逻辑与, true返回b, false返回aa || b : 将a, b转换为Boolean类型, 再执行逻辑或, true返回a, false返回b转换规则:对象为true非零数字为true非空字符串为true其 阅读全文
posted @ 2016-04-19 14:24 t800 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-03-01 01:38 t800 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 创建版本库 -- 小结现在总结一下今天学的两点内容:初始化一个Git仓库,使用git init命令。添加文件到Git仓库,分两步:第一步,使用命令git add ,注意,可反复多次使用,添加多个文件;第二步,使用命令git commit,完成。时光机穿梭 -- 小结要随时掌握工作区的状态,使用git... 阅读全文
posted @ 2015-11-27 22:05 t800 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 抽象类:抽象类是特殊的类,只是不能被实例化;除此以外,具有类的其他特性;重要的是抽象类可以包括抽象方法,这是普通类所不能的。 基本有好处三个:1 、代码重用、2 灵活、3、最小集合; 抽象类可以派生自一个抽象类,可以覆盖基类的抽象方法也可以不覆盖,如果不覆盖,则其派生类必须覆盖它们。 1、抽象... 阅读全文
posted @ 2015-11-27 17:57 t800 阅读(233) 评论(0) 推荐(0) 编辑
摘要: SVN 全称( Subversion( 版本控制 ) )的作用:-- 解决代码备份问题 ;-- 解决代码版本问题 ;一个人开发的缺点: 版本管理( 代码怕丢失,回退到任意版本还需要自己建立文件夹来保存 )多个人开发的好处; 版本管理 + 团队协作 ;VSS(淘汰) CVS(用的少) SVN(开源... 阅读全文
posted @ 2015-11-26 18:30 t800 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 面试题:sqlserver与oracle的区别 软件开发Oracle 一、开放性 1、SQL Server 只能在windows上运行,没有丝毫的开放性,操作系统的系统的稳定对数据库是十分重要的。Windows9X系列产品是偏重于桌面应用,NT server只适合中小型企业。而且windows平... 阅读全文
posted @ 2015-11-23 23:52 t800 阅读(173) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Linq_to_Object查询集合{ class ... 阅读全文
posted @ 2015-11-22 14:54 t800 阅读(553) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 查询表达式{ class Program { ... 阅读全文
posted @ 2015-11-22 14:27 t800 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 每种数据源都有自己的查询语言;Linq的提出就是为了:跨越各种数据源的统一查询方式Linq主要包含了 4个组件,Linq to Object 、Linq to XML 、Linq to DataSet 和 Linq to SQL .Linq to sql 可以查询基于关系数据库的数据,其中微软只是对... 阅读全文
posted @ 2015-11-22 13:13 t800 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace Lambda演化... 阅读全文
posted @ 2015-11-21 23:06 t800 阅读(170) 评论(0) 推荐(0) 编辑