码迷,mamicode.com
首页 > 其他好文
Xcon2014 && Geekpwn2014
Xcon2014 && Geekpwn2014
分类:其他好文   时间:2014-10-27 01:45:18    阅读次数:247
《Pro Git》学习笔记
这是小弟在阅读《Pro Git》时总结和记录的一些Git的基本原理和基本操作。
分类:其他好文   时间:2014-10-27 01:46:36    阅读次数:296
【nRF51822蓝牙开发笔记】点亮LED灯
/******************** (C) COPYRIGHT 2014 ???? ******************** * ÎļþÃû :main * ÃèÊö : * ÊÔÑéƽ̨: nRF51822À¶ÑÀ¿ª·¢°å * ÃèÊö : * ×&
分类:其他好文   时间:2014-10-27 01:43:20    阅读次数:151
求最大数,最小数
package my;public class MyJava { public static void main(String[] args) { // TODO Auto-generated method stub int[] num = {10,5,13,22,87,44}; int m...
分类:其他好文   时间:2014-10-27 01:46:18    阅读次数:180
A Tour of Go The new function
The expressionnew(T)allocates a zeroedTvalue and returns a pointer to it.var t *T = new(T)ort := new(T)package main import "fmt"type Vertex struct { ....
分类:其他好文   时间:2014-10-27 01:44:40    阅读次数:177
单例模式
Singleton模式,即单例模式。顾名思义,主要用于做应用程序的资源共享控制。实质为,单例是在程序声明周期里有且仅有被实例化过一次的类。为确保实例化的唯一,利用类的类(static)方法来生成和访问对象。至此,我们可以在程序中任何地方访问类的单例对象,因为只实例化唯一的一次,所以,并不用 allo...
分类:其他好文   时间:2014-10-27 01:45:11    阅读次数:179
A Tour of Go Nil slices
The zero value of a slice isnil.A nil slice has a length and capacity of 0.(To learn more about slices, read theSlices: usage and internalsarticle.)pa...
分类:其他好文   时间:2014-10-27 01:42:33    阅读次数:165
A Tour of Go Slices
A slice points to an array of values and also includes a length.[]Tis a slice with elements of typeT.package main import "fmt"func main() { p := []...
分类:其他好文   时间:2014-10-27 01:45:20    阅读次数:222
A Tour of Go Making slices
Slices are created with themakefunction. It works by allocating a zeroed array and returning a slice that refers to that array:a := make([]int, 5) //....
分类:其他好文   时间:2014-10-27 01:44:02    阅读次数:183
精益看板分析:流动效率
流动效率是度量组织精益程度的指标。对于ITC公司来说:根据《Zsolt Fabok, Lean Agile Scotland, Sep 2012, Lean Kanban France, Oct 2012》报告,流动效率为2%流动效率在5%至15%认为正常流动效率>40%就很好了!恰如《This i...
分类:其他好文   时间:2014-10-27 01:42:05    阅读次数:242
关于模拟IIS服务器的自己的理解
第一步请求 get \http:sfsf.html \http1.1封装报文 method url Protol 类 HttpRequest第二步 处理这里需要使用到 HttpRequest对象 判断处理 如果是静态文件 如HTML cs 等后缀的文件 直接IO(读取) ...
分类:其他好文   时间:2014-10-27 01:43:56    阅读次数:170
A Tour of Go Struct Literals
A struct literal denotes a newly allocated struct value by listing the values of its fields.You can list just a subset of fields by using theName:synt...
分类:其他好文   时间:2014-10-27 01:43:25    阅读次数:206
人工智能思考<一>
1.把它作为人工智能的代称2.它获取的知识只能有很少一部分是人工输入的,大部分都需要自己学习 就像小孩子一样,最开始的“爸爸妈妈”需要生硬的教授,但是长大之后获得的知识大部分都是通过自己的模仿学习。 怎样模仿学习呢?怎样让它自己产生对学到知识的改进呢?还是说一切的本质都是模仿?或者说需要足够多的.....
分类:其他好文   时间:2014-10-27 01:40:40    阅读次数:188
类方法,实例方法,对象方法,静态方法,动态方法
类方法,实例方法,对象方法,静态方法,动态方法
分类:其他好文   时间:2014-10-27 01:42:42    阅读次数:153
学习笔记之07-基本语句和运算
一、基本语句C语言的基本语句跟Java中的差不多,所以,这里只是简单地提一下循环语句(do while、while、for)条件语句(if 、if-else、switch)goto语句二、基本运算计算机的基本能力就是计算,所以一门语言的计算能力十分重要。C语言之所以无所不能,很大原因在于它有强大的计...
分类:其他好文   时间:2014-10-27 01:42:29    阅读次数:205
Congestion Avoidance in TCP
Congestion Avoidance in TCP Consequence of lack of congestion control When a popular resource is shared without regulation the result is always ove...
分类:其他好文   时间:2014-10-27 01:41:51    阅读次数:397
A Tour of Go Arrays
The type[n]Tis an array ofnvalues of typeT.The expressionvar a [10]intdeclares a variableaas an array of ten integers.An array's length is part of its...
分类:其他好文   时间:2014-10-27 01:40:52    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!