码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
javascript 循环显示<hn>字体
使用匿名函数 上面这种方法是使用javascript的匿名函数进行显示,也可以直接循环显示(下面) 1 2 3 4 hello world 5 14 15 16 17 18 19 20
分类:编程语言   时间:2014-05-18 02:38:58    阅读次数:290
[NHibernate]使用AttributeNHibernate.Mapping.Attributes
系列文章[Nhibernate]体系结构[NHibernate]ISessionFactory配置[NHibernate]持久化类(Persistent Classes)[NHibernate]O/R Mapping基础[NHibernate]集合类(Collections)映射[NHibernat...
分类:移动开发   时间:2014-05-18 02:38:01    阅读次数:394
xml实现登录表单验证
定义: XML(eXtended Markup Language,可扩展标记语言)提供了一套跨平台、跨网络、跨程序的语言的数据描述方式,使用XML可以方便地实现数据交换、系统配置、内容管理等常见功能。XML解析: 在XML文件中由于更多的是描述信息的内容,所以在得到一个XML文档后应该利用程序按.....
分类:其他好文   时间:2014-05-18 02:36:54    阅读次数:217
Leetcode | Partition List
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o...
分类:其他好文   时间:2014-05-18 02:34:57    阅读次数:352
[游戏模版12] Win32 稳定定时
>__=100)MyPaint(hdc); //tPre前次绘图的时间;计算上次绘图到这次循环之间的时间13 } //------------|若相差100个单位进行一次绘图操作,通过这14 } ...
分类:Windows程序   时间:2014-05-18 02:30:52    阅读次数:461
javascript 原型链
一、什么是原型链 当需要获取一个对象的某个属性或方法时,首先在对象自身查找该属性,找不到的话,会沿着原型链向上查找,直到在某个原型中找到该属性,如果到达原型链顶端依然找不到,则返回undefined. 1 var person = {name : "Peter"}; 2 3 //Peter...
分类:编程语言   时间:2014-05-18 02:25:41    阅读次数:336
Spring零配置
@Component :标注一个普通的Spring Bean类。@Controller: 标注一个控制器组件类。@Service:标注一个业务逻辑组件类。@Repository:标注一个DAO组件类。首先要使用注解需要配置Spring自动扫描的包 将ScheduleDaoImp类注入在Spring....
分类:编程语言   时间:2014-05-18 02:24:39    阅读次数:367
JavaScript Array 对象
创建 Array 对象的语法:var array = []; var array new Array();var array new Array(size); // length = sizevar array new Array(element0, element1, ..., elementn)...
分类:编程语言   时间:2014-05-18 02:22:39    阅读次数:314
【LeetCode】Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-18 02:11:19    阅读次数:302
linux grep命令
简介grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgr...
分类:系统相关   时间:2014-05-18 02:10:16    阅读次数:529
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!