理解 es6 class 中 constructor 方法 和 super 的作用
首先,ES6 的 class 属于一种“语法糖”,所以只是写法更加优雅,更加像面对对象的编程,其思想和 ES5 是一致的。 function Point(x, y) { this.x = x; this.y = y; } Point.prototype.toString = function() { return '(' + this.x + ',' + this.y + ')'; } 复制代码 …
首先,ES6 的 class 属于一种“语法糖”,所以只是写法更加优雅,更加像面对对象的编程,其思想和 ES5 是一致的。 function Point(x, y) { this.x = x; this.y = y; } Point.prototype.toString = function() { return '(' + this.x + ',' + this.y + ')'; } 复制代码 …
一、什么是自动装配 SpringBoot 定义了一套接口规范,这套规范规定: SpringBoot 在启动时会扫描外部引用jar包中的 META-INF/spring.factories 文件,将文件中配置的类型信息加载到 Spring 容器,并执行类中定义的各种操作。对于外部jar包来说,只需要按照 SpringBoot 定义的标准,就能将自己的功能装配到 SpringBoot 中。 二、自动装…
day02-01-图片 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=d…
简单的介绍一下构造的的这个比较简单的神经网络的结构,首先,我们这个输入依然是n个样本然后一张图片是784个像素点。第一层我们希望输出是64个特征图,所以我们设定有64个3*3大小的滤波器(卷积核)要注意我们这里的卷积核的深度为1,依赖于灰度图,所以我们输入图像的深度也为1,所以我们要保证卷积核和输入的深度是一致的。然后来到了第一个卷积层之后的池化层,我们设定池化的大小为2*2也就是经历一个池化层之…
在 Spring Boot 程序中添加 @Configuration和@ConfigurationProperties(value = "ecm.dcc")注解时,会提示 spring boot configuration annotation processor not configured 解决办法是在 pom 文件中添加 spring-boot-configuration-processor…
CompletableFuture是一个异步编程工具类 简单使用 CompletableFuture<String> completableFuture = new CompletableFuture<>(); new Thread(() -> { try { Thread.sleep(1000); } catch (InterruptedException e) {…
最近测试openMVG的三维重建效果,于是在github下克隆openMVG的库,git clone过程成功进行,但是在build文件夹下cmake的时候error occured! 错误显示"submodule(s) are missing" 1、更新模块 在主文件夹下执行以下命令 git clone 父项目.git git submodule init git submodule update…
创建你的第一个两轮ROS机器人(模拟) sudo gedit myrobot.urdf <?xml version='1.0'?> <robot name="dd_robot"> <!-- Base Link --> <link name="base_link"> … </link> <!-- Right Wheel --> …
工作中遇到的需求,要安装多个apk,所以就搜索资料资写了批量安装脚本,当然要安装就要卸载,顺便也写了个卸载脚本。 安装脚本内容: @echo off setlocal EnableDelayedExpansion title install apks color 0a :: 重启adb 保证能顺利连接 adb kill-server adb start-…
情况: Win7卸载了.Net Framework 3.5后, 做了些盘符的Symlink操作, 将一些大文件从C盘移到D盘. 再次安装.Net 3.5时, 怎么都装不上, 直接下载离线安装包, 一装就说必须用Windows Feature来装, 不能直接安装, 真是服了微软的这个脑残限制. .Net 2.0, 4.0都没这限制. 那就用Windows Feature装, 结果也是一装就报错…