BigDecimal工具类总所周知,java在浮点型运算时是非精确计算,如下demo System.out.println(0.05 + 0.01);// 0.060000000000000005System.out.println(1.0 - 0.42);// 0.5800000000000001 ...
分类:
其他好文 时间:
2019-01-13 13:43:48
阅读次数:
167
Tomcat服务器 1.Web开发中的常见概念 (1)B/S系统和C/S系统 Brower/Server:浏览器 服务器 系统 网站 Client/Server:客户端 服务器 系统 QQ、飞秋、大型游戏 (2)web应用服务器 供向外部发布web资源的服务器软件 (3)web资源(服务器中可供外界 ...
分类:
编程语言 时间:
2019-01-13 13:43:37
阅读次数:
214
1.线性表的链式存储结构 线性表的链式存储结构允许数据元素存在任意未被占用的内存空间,因为在线性表的链式存储结构中,除了存储数据元素相关的数据信息之外,还存储了数据元素的后继元素存储地址,这样通过当前数据元素很容易找到下一个数据元素。 链式存储结构中,存取一个数据元素内容信息和直接后继的存储位置的结 ...
分类:
其他好文 时间:
2019-01-13 13:43:26
阅读次数:
302
就是这样的格式,可以用powermap制作。 有这个几个选项需要设置 图层选项--色阶/影响半径 ...
分类:
其他好文 时间:
2019-01-13 13:43:18
阅读次数:
196
You are given an integer array A. From some starting index, you can make a series of jumps. The (1st, 3rd, 5th, ...) jumps in the series are called od ...
分类:
其他好文 时间:
2019-01-13 13:43:04
阅读次数:
268
#coding:utf-8 # # 本程序演示了WINREG操作WINDOWS注册表的所有常见操作# 作者:dengpeiyou QQ:86074731 2019.01.12# import ctypesimport winregimport os # 打开子键key=Nonetry: key=wi ...
分类:
Windows程序 时间:
2019-01-13 13:42:50
阅读次数:
1011
第一题: 973. K Closest Points to Origin 973. K Closest Points to Origin We have a list of points on the plane. Find the K closest points to the origin (0 ...
分类:
其他好文 时间:
2019-01-13 13:42:40
阅读次数:
199
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:
其他好文 时间:
2019-01-13 13:42:33
阅读次数:
247
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice The slice() method returns a shallow copy of a portion of ...
分类:
编程语言 时间:
2019-01-13 13:42:22
阅读次数:
172
任务队列和异步接口的正确打开方式 什么是异步接口? Asynchronous Operations Certain types of operations might require processing of the request in an asynchronous manner (e.g. ...
分类:
Web程序 时间:
2019-01-13 13:41:52
阅读次数:
153
launch.json tasks.json DartLauncher.cs ...
分类:
其他好文 时间:
2019-01-13 13:41:41
阅读次数:
175
ES6中新增了Set数据结构,类似于数组,但是 它的成员都是唯一的 ,其构造函数可以接受一个数组作为参数,如: let array = [1, 1, 1, 1, 2, 3, 4, 4, 5, 3]; let set = new Set(array); console.log(set); // => ...
分类:
编程语言 时间:
2019-01-13 13:41:27
阅读次数:
194
python dbutils 简介及准备工作 DBUtils是一套Python数据库连接池包,并允许对非线程安全的数据库接口进行线程安全包装。DBUtils来自Webware for Python。 DBUtils提供两种外部接口: PersistentDB :提供线程专用的数据库连接,并自动管理连 ...
分类:
数据库 时间:
2019-01-13 13:41:18
阅读次数:
308
Servlet接口(处理客户端请求、响应给浏览器的动态资源的规范) 创建类实现Servlet接口 实现service方法 在web.xml进行servlet的配置 Servlet接口的方法 init(ServletConfig config) 初始化 默认第一次访问时创建servlet对象 Serv ...
分类:
编程语言 时间:
2019-01-13 13:41:08
阅读次数:
201
sscanf的使用 语法 参数 存储的数据 控件字符串 可选自变量 说明 第二个参数可以是一个或者多个 这个参数说明暂时不清楚,先不用管它,稍后通过例子来说明 返回值 函数将返回成功赋值的字段个数;返回值不包括已读取但未值的字段个数。返回值为0表示在第一次读取之前到达字符串结尾,则返回EOF 使用实 ...
分类:
其他好文 时间:
2019-01-13 13:40:58
阅读次数:
324
1. 虚函数表 C++的多态是通过一张虚函数表(virtual Table)来实现的,简称为V-Table,(这个表是隐式的,不需要关心其生成与释放)在这个表中,主要是一个类的虚函数的地址表,这张表解决了继承,覆写的问题,保证其真实反应实际的函数,这样,在有虚函数的类的实例中这个表被分配在了这个实例 ...
分类:
其他好文 时间:
2019-01-13 13:40:46
阅读次数:
226
1.线性表定义:线性表是零个或多个数据元素的有限序列。两种物理结构:顺序存储结构和链式存储结构。 2.线性表的顺序存储结构定义:是指用一段地址连续的数据单元依次存储线性表的数据元素。说白了就是在内存中占用一块空间,然后将相同数据类型的元素依次存入。 在线性表的定义中,指出是用一段地址连续的数据单元存 ...
分类:
其他好文 时间:
2019-01-13 13:40:36
阅读次数:
210