除了FLIR 等之外 ALLIED: https://alliedscientificpro.com/shop/product/uncooled-lwir-infrared-sensor-8-to-14-microns-19281 UnCooled LWIR Infrared sensor (8 t ...
分类:
其他好文 时间:
2020-02-16 13:08:40
阅读次数:
94
安装,参考:https://blog.csdn.net/pancheng1984/article/details/79823467 安装oracle 11.2.4时,报错: 未找到文件...WFMLRSVCApp.ear文件 解决方法如下: oracle 11.2.4有两个压缩包,将压缩包解压至同一 ...
分类:
移动开发 时间:
2020-02-16 12:57:15
阅读次数:
127
主要角色 1. 产品角色(Product):它是包含多个组成部件的复杂对象,由具体建造者来创建其各个滅部件。 2. 抽象建造者(Builder):它是一个包含创建产品各个子部件的抽象方法的接口,通常还包含一个返回复杂产品的方法 getResult()。 3. 具体建造者(Concrete Build ...
分类:
其他好文 时间:
2020-02-15 23:13:02
阅读次数:
89
打包分析 1.初级分析:webpack内置的stats(构建的统计信息) 可以在 package.json 中使用 stats,也可以在 Node API 中使用 stats webpack --config webpack.prod.js --json > stats.json 2.速度分析:sp ...
分类:
Web程序 时间:
2020-02-15 10:01:29
阅读次数:
110
1 [Serializable] 2 public class Product 3 { 4 public Product() 5 { 6 7 8 } 9 10 public Product(string id,string pname,int num,double price) 11 { 12 th ...
分类:
其他好文 时间:
2020-02-15 09:53:38
阅读次数:
69
服务器出故障了 搞了半天 最后还是根据官方文档排查解决 https://cloud.tencent.com/document/product/213/14633 ...
分类:
其他好文 时间:
2020-02-14 16:10:56
阅读次数:
65
题目:给定一个整数数组 nums ,找出一个序列中乘积最大的连续子序列(该序列至少包含一个数)。 来源:https://leetcode-cn.com/problems/maximum-product-subarray/ 法一:别人代码 思路:由于想用动态规划解题,通过观察数字可以发现从nums[i ...
分类:
其他好文 时间:
2020-02-14 12:42:52
阅读次数:
65
1 # 排列 2 from itertools import product 3 l = [1, 2, 3] 4 print(list(product(l, l))) 5 print(list(product(l, repeat=4))) 6 7 # 组合 8 from itertools impo ...
分类:
编程语言 时间:
2020-02-13 23:13:20
阅读次数:
119
恢复内容开始 恢复内容开始 恢复内容开始 数据库管理 Lombok插件 少写getter setter string等方法 Assert.assertNotEquals(0,result.size()); 不期望是0,期望是result.size(); ProductCategory product ...
分类:
编程语言 时间:
2020-02-13 20:49:56
阅读次数:
72
题目: 编写一个模板函数 inner_product,返回值是∑a[i]*b[i] (i 从 0到 n - 1)。测试你的代码。 思路: 由题可知,本函数计算的是两个数组的内积。内积一般是数字,如整数,浮点数。函数返回值应该设置为与数组元素相同类型。 代码: 1 #include <iostream ...
分类:
其他好文 时间:
2020-02-13 17:00:26
阅读次数:
107