A Digital Library contains millions of books, stored according to their titles, authors, key words of their abstracts, publishers, and published years ...
分类:
其他好文 时间:
2019-10-29 13:31:54
阅读次数:
107
1.1.copy函数 通过copy函数可以把一个切片内容复制到另一个切片中 (1)把长切片拷贝到短切片中 package main import "fmt" func main() { s1 := []int {1,2} s2 := []int{3,4,5,6} //copy的是角标,不会增加元切片 ...
分类:
编程语言 时间:
2019-10-29 11:37:13
阅读次数:
126
萌新小白人生中的第一篇博客,难免会有差错,还望各位大佬多多包涵。 1. Ajax技术简介 Ajax(Asynchronous JavaScript and XML,异步JavaScript和XML)时一种创建交互式网页应用的网页开发技术,它并不是一项新的技术,其产生的目的是用于实现页面的局部刷新。通 ...
分类:
Web程序 时间:
2019-10-29 09:29:48
阅读次数:
95
If you are exposing your class through a library that others will use, you generally want to expose it via interfaces rather than concrete implementat ...
分类:
其他好文 时间:
2019-10-28 21:16:18
阅读次数:
103
ref: https://stackoverflow.com/questions/29987716/cannot use gsl library on macos ld symbols not found for architecture x86 6 Indeed, as @trojanfoe an ...
分类:
系统相关 时间:
2019-10-28 19:11:42
阅读次数:
98
一、 1、启动一个WEB项目,WEB容器会先去读取它的配置文件web.xml,读取<context-param>和<listener>两个节点。 2、接着,容器创建一个ServletContext(servlet上下文),这个web项目的所有部分都讲共享这个上下文 3、容器将<context-par ...
分类:
编程语言 时间:
2019-10-28 14:50:40
阅读次数:
82
本文试图对Pytorch1.3源码解析-第一篇
Pytorch核心分为5大块:
1. c10(c10-Caffe Tensor Library,核心Tensor实现(手机端+服务端))
2. aten(aten -A TENsor library for C++11,PyTorch的C... ...
分类:
其他好文 时间:
2019-10-28 12:43:47
阅读次数:
80
PIL是Python Imaging Library的简称,PIL是一个Python处理图片的库,提供了一系列模块和方法,比如:裁切,平移,旋转,改变尺寸等等。已经是Python平台事实上的图像处理标准库了。PIL功能非常强大,但API却非常简单易用。 PIL有如下几个模块:Image模块、Imag ...
分类:
编程语言 时间:
2019-10-26 17:38:26
阅读次数:
109
为了防止忘记,特记下 DLL的创建,在VS2017中选择dll的创建 Build上面的程序,会生成dll 在需要dll的另一个项目中注入dll 这个项目是检测创建的窗口是否处于激活状态,仅供参考 ...
分类:
其他好文 时间:
2019-10-25 15:05:11
阅读次数:
96
前言 Rxjava是NetFlix出品的Java框架, 官方描述为 a library for composing asynchronous and event based programs using observable sequences for the Java VM,翻译过来就是“使用可观 ...
分类:
编程语言 时间:
2019-10-24 13:11:35
阅读次数:
112