码迷,mamicode.com
首页 >  
搜索关键字:style    ( 244891个结果
CMSIS Example - Signal
1 /*---------------------------------------------------------------------------- 2 * RL-ARM - RTX 3 *-----------------------------------------...
分类:其他好文   时间:2014-07-19 08:37:42    阅读次数:276
WCC框架设计
一个好的框架,不仅能帮助程序开发节约很多时间,同时也能减少bug的引入。这个框架是在ssy同学的基础上进行了一些改进: 主要在于一下几点(会随着项目开发逐渐更新这篇文章) 1. 应用了反射机制,实现网络Task的多态。 2. 应用MVC模式,独立出数据Model,让Activity更加专注在界面响应...
分类:其他好文   时间:2014-07-19 08:37:19    阅读次数:396
MASM syntax : Directives
.MODEL:初始化程序内存模型. .MODEL只用在16bit , 和 32bit 平台上.格式: .MODEL memorymodel [[,langtype]] [[,stackoption]]-- memorymodel : 决定代码和数据指针的尺寸。 在 32bit平台上,memory.....
分类:其他好文   时间:2014-07-19 08:36:58    阅读次数:214
CMSIS Example - Mail and Message
1 /*---------------------------------------------------------------------------- 2 * RL-ARM - RTX 3 *--------------------------------------...
分类:其他好文   时间:2014-07-19 08:36:36    阅读次数:329
互联网协议入门(二)(转)
(接上文) 七、一个小结 先对前面的内容,做一个小结。 我们已经知道,网络通信就是交换数据包。电脑A向电脑B发送一个数据包,后者收到了,回复一个数据包,从而实现两台电脑之间的通信。数据包的结构,基本上是下面这样: 发送这个包,需要知道两个地址:对方的 MAC 地址对方的 IP 地址 有...
分类:其他好文   时间:2014-07-19 08:36:21    阅读次数:211
JavaScript Patterns 6.4 Prototypal Inheritance
Use an empty temporary constructor function F(). Set the prototype of F() to be the parent object. Return a new instance of the temporary construct...
分类:编程语言   时间:2014-07-19 08:36:01    阅读次数:276
Apache Tomcat 7 读书笔记 - 第一章
Apache Tomcat 简介:开源框架,下载地址:http://tomcat.apache.org/。可以嵌入独立的web应用,也可作为多个web应用的服务器。基于Java的web应用服务器容器,能托管Servlet和Java Server Pages(JSP)的web应用。我们常用的J2EE框...
分类:其他好文   时间:2014-07-19 08:35:40    阅读次数:243
LeetCode Palidrome Number
class Solution {public: bool isPalindrome(int x) { if (x < 0) return false; int pow = 1; int t = x; int cnt = 1; ...
分类:其他好文   时间:2014-07-19 08:35:19    阅读次数:190
jQuery学习笔记(一)
补充一些自己容易忘的知识点:event.stopPropagation() 阻止事件冒泡event.preventDefault() 阻止事件的默认行为return false 相当于event.stopPropagation() +event.preventDefault() 。除了阻止默认行为之...
分类:Web程序   时间:2014-07-19 08:34:57    阅读次数:181
CMSIS Example - Signal and Yield
1 /*---------------------------------------------------------------------------- 2 * RL-ARM - RTX 3 *--------------------------------------...
分类:其他好文   时间:2014-07-19 08:34:42    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!