HTML:<div style="display:block;margin:0 auto;width:638px;height:795px;"><div id="render" > CONTENT</div></div> <div id="template" style="margin:10px 0 ...
分类:
Web程序 时间:
2016-12-03 20:56:54
阅读次数:
707
英文文档: The constructor builds a tuple whose items are the same and in the same order as iterable‘s items. iterable may be either a sequence, a containe ...
分类:
编程语言 时间:
2016-12-03 18:47:11
阅读次数:
292
Java注解Annotation(一)——简介 这一章首先简单介绍一下注解,下一章会给出一个注解应用的DEMO。 1. 元注解 元注解的作用是负责注解其他的注解。 JDK1.5中,定义了4个标准的meta-annotation元注解类型,他们被用来提供对其它annotation注解类型作说明。 这些 ...
分类:
编程语言 时间:
2016-12-03 18:26:25
阅读次数:
189
一、前言 编码时我们总会发现如下变量未被使用的警告提示: 上述代码编译通过且可以运行,但每行前面的“感叹号”就严重阻碍了我们判断该行是否设置的断点了。这时我们可以在方法前添加 @SuppressWarnings("unused") 去除这些“感叹号”。 二、 @SuppressWarings注解 作 ...
分类:
其他好文 时间:
2016-12-03 17:52:17
阅读次数:
150
julia> code_native(fib1,(Int64,)) .textFilename: REPL[17] pushq %rbp movq %rsp, %rbp pushq %rsi subq $40, %rsp movq %rcx, %rsiSource line: 2 cmpq $1, ...
分类:
其他好文 时间:
2016-12-03 14:40:00
阅读次数:
181
需要整理 Gaussian filter https://en.wikipedia.org/wiki/Gaussian_filter Laplacian/Laplacian of Gaussian http://homepages.inf.ed.ac.uk/rbf/HIPR2/log.htm Dif ...
分类:
其他好文 时间:
2016-12-03 12:44:47
阅读次数:
248
// 一维数组 int[] arr = { 1, 2, 3, 4, 5 }; foreach (int i in arr) { Console.WriteLine(i.ToString() + "\r"); } // 二维数组 int[,] arr2 = { { 1, 2 }, { 3, 4 } } ...
分类:
编程语言 时间:
2016-12-03 12:33:58
阅读次数:
181